From f949f65fba24297dd3e439faf42431adc7f9c4cc Mon Sep 17 00:00:00 2001 From: Greg Wilson Date: Wed, 5 Feb 2025 13:06:22 -0500 Subject: [PATCH] feat: adding type annotations to some constructor parameters 1. Add `from __future__ import annotations` as the first line of generated files so that modern Python type annotation syntax can be used in older versions of Python. 1. Add `from typing import Any` and `from numpy.types import NDArray` to all generated files rather than trying to figure out which of these imports are needed on a file-by-file basis. 1. Rename `get_typing_type` in `codegen/datatypes.py` to `get_python_type` to make purpose clearer. 1. Add additional optional parameter to `get_python_type` so that `compound` and `compound_array` types in the schema are converted to `None` rather than causing an exception. 1. Modify `codegen/datatypes.py` to add type annotations to constructor parameters. 1. Modify `codegen/figure.py` to add `bool` type to one figure constructor parameter. FIXME: figure out what type should actually be returned for `compound` and `compound_array`. FIXME: figure out what types to use for other standard parameters of figures generated by `codegen/figure.py`. --- codegen/datatypes.py | 24 +- codegen/figure.py | 7 +- plotly/graph_objs/_bar.py | 179 +- plotly/graph_objs/_barpolar.py | 121 +- plotly/graph_objs/_box.py | 209 +- plotly/graph_objs/_candlestick.py | 123 +- plotly/graph_objs/_carpet.py | 91 +- plotly/graph_objs/_choropleth.py | 117 +- plotly/graph_objs/_choroplethmap.py | 117 +- plotly/graph_objs/_choroplethmapbox.py | 117 +- plotly/graph_objs/_cone.py | 151 +- plotly/graph_objs/_contour.py | 169 +- plotly/graph_objs/_contourcarpet.py | 127 +- plotly/graph_objs/_densitymap.py | 119 +- plotly/graph_objs/_densitymapbox.py | 119 +- plotly/graph_objs/_figure.py | 5359 +++++++++-------- plotly/graph_objs/_figurewidget.py | 5359 +++++++++-------- plotly/graph_objs/_frame.py | 15 +- plotly/graph_objs/_funnel.py | 157 +- plotly/graph_objs/_funnelarea.py | 117 +- plotly/graph_objs/_heatmap.py | 165 +- plotly/graph_objs/_histogram.py | 153 +- plotly/graph_objs/_histogram2d.py | 145 +- plotly/graph_objs/_histogram2dcontour.py | 147 +- plotly/graph_objs/_icicle.py | 123 +- plotly/graph_objs/_image.py | 97 +- plotly/graph_objs/_indicator.py | 55 +- plotly/graph_objs/_isosurface.py | 145 +- plotly/graph_objs/_layout.py | 197 +- plotly/graph_objs/_mesh3d.py | 175 +- plotly/graph_objs/_ohlc.py | 123 +- plotly/graph_objs/_parcats.py | 53 +- plotly/graph_objs/_parcoords.py | 59 +- plotly/graph_objs/_pie.py | 133 +- plotly/graph_objs/_sankey.py | 61 +- plotly/graph_objs/_scatter.py | 173 +- plotly/graph_objs/_scatter3d.py | 137 +- plotly/graph_objs/_scattercarpet.py | 125 +- plotly/graph_objs/_scattergeo.py | 129 +- plotly/graph_objs/_scattergl.py | 151 +- plotly/graph_objs/_scattermap.py | 117 +- plotly/graph_objs/_scattermapbox.py | 117 +- plotly/graph_objs/_scatterpolar.py | 131 +- plotly/graph_objs/_scatterpolargl.py | 127 +- plotly/graph_objs/_scattersmith.py | 121 +- plotly/graph_objs/_scatterternary.py | 129 +- plotly/graph_objs/_splom.py | 97 +- plotly/graph_objs/_streamtube.py | 143 +- plotly/graph_objs/_sunburst.py | 121 +- plotly/graph_objs/_surface.py | 141 +- plotly/graph_objs/_table.py | 65 +- plotly/graph_objs/_treemap.py | 121 +- plotly/graph_objs/_violin.py | 143 +- plotly/graph_objs/_volume.py | 147 +- plotly/graph_objs/_waterfall.py | 177 +- plotly/graph_objs/bar/_error_x.py | 37 +- plotly/graph_objs/bar/_error_y.py | 35 +- plotly/graph_objs/bar/_hoverlabel.py | 29 +- plotly/graph_objs/bar/_insidetextfont.py | 57 +- plotly/graph_objs/bar/_legendgrouptitle.py | 7 +- plotly/graph_objs/bar/_marker.py | 41 +- plotly/graph_objs/bar/_outsidetextfont.py | 57 +- plotly/graph_objs/bar/_selected.py | 7 +- plotly/graph_objs/bar/_stream.py | 7 +- plotly/graph_objs/bar/_textfont.py | 57 +- plotly/graph_objs/bar/_unselected.py | 7 +- plotly/graph_objs/bar/hoverlabel/_font.py | 57 +- .../graph_objs/bar/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/bar/marker/_colorbar.py | 105 +- plotly/graph_objs/bar/marker/_line.py | 31 +- plotly/graph_objs/bar/marker/_pattern.py | 37 +- .../bar/marker/colorbar/_tickfont.py | 21 +- .../bar/marker/colorbar/_tickformatstop.py | 13 +- .../graph_objs/bar/marker/colorbar/_title.py | 9 +- .../bar/marker/colorbar/title/_font.py | 21 +- plotly/graph_objs/bar/selected/_marker.py | 7 +- plotly/graph_objs/bar/selected/_textfont.py | 5 +- plotly/graph_objs/bar/unselected/_marker.py | 7 +- plotly/graph_objs/bar/unselected/_textfont.py | 5 +- plotly/graph_objs/barpolar/_hoverlabel.py | 29 +- .../graph_objs/barpolar/_legendgrouptitle.py | 7 +- plotly/graph_objs/barpolar/_marker.py | 39 +- plotly/graph_objs/barpolar/_selected.py | 7 +- plotly/graph_objs/barpolar/_stream.py | 7 +- plotly/graph_objs/barpolar/_unselected.py | 7 +- .../graph_objs/barpolar/hoverlabel/_font.py | 57 +- .../barpolar/legendgrouptitle/_font.py | 21 +- .../graph_objs/barpolar/marker/_colorbar.py | 105 +- plotly/graph_objs/barpolar/marker/_line.py | 31 +- plotly/graph_objs/barpolar/marker/_pattern.py | 37 +- .../barpolar/marker/colorbar/_tickfont.py | 21 +- .../marker/colorbar/_tickformatstop.py | 13 +- .../barpolar/marker/colorbar/_title.py | 9 +- .../barpolar/marker/colorbar/title/_font.py | 21 +- .../graph_objs/barpolar/selected/_marker.py | 7 +- .../graph_objs/barpolar/selected/_textfont.py | 5 +- .../graph_objs/barpolar/unselected/_marker.py | 7 +- .../barpolar/unselected/_textfont.py | 5 +- plotly/graph_objs/box/_hoverlabel.py | 29 +- plotly/graph_objs/box/_legendgrouptitle.py | 7 +- plotly/graph_objs/box/_line.py | 7 +- plotly/graph_objs/box/_marker.py | 17 +- plotly/graph_objs/box/_selected.py | 5 +- plotly/graph_objs/box/_stream.py | 7 +- plotly/graph_objs/box/_unselected.py | 5 +- plotly/graph_objs/box/hoverlabel/_font.py | 57 +- .../graph_objs/box/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/box/marker/_line.py | 11 +- plotly/graph_objs/box/selected/_marker.py | 9 +- plotly/graph_objs/box/unselected/_marker.py | 9 +- plotly/graph_objs/candlestick/_decreasing.py | 7 +- plotly/graph_objs/candlestick/_hoverlabel.py | 31 +- plotly/graph_objs/candlestick/_increasing.py | 7 +- .../candlestick/_legendgrouptitle.py | 7 +- plotly/graph_objs/candlestick/_line.py | 5 +- plotly/graph_objs/candlestick/_stream.py | 7 +- .../candlestick/decreasing/_line.py | 7 +- .../candlestick/hoverlabel/_font.py | 57 +- .../candlestick/increasing/_line.py | 7 +- .../candlestick/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/carpet/_aaxis.py | 125 +- plotly/graph_objs/carpet/_baxis.py | 125 +- plotly/graph_objs/carpet/_font.py | 21 +- plotly/graph_objs/carpet/_legendgrouptitle.py | 7 +- plotly/graph_objs/carpet/_stream.py | 7 +- plotly/graph_objs/carpet/aaxis/_tickfont.py | 21 +- .../carpet/aaxis/_tickformatstop.py | 13 +- plotly/graph_objs/carpet/aaxis/_title.py | 9 +- plotly/graph_objs/carpet/aaxis/title/_font.py | 21 +- plotly/graph_objs/carpet/baxis/_tickfont.py | 21 +- .../carpet/baxis/_tickformatstop.py | 13 +- plotly/graph_objs/carpet/baxis/_title.py | 9 +- plotly/graph_objs/carpet/baxis/title/_font.py | 21 +- .../carpet/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/choropleth/_colorbar.py | 105 +- plotly/graph_objs/choropleth/_hoverlabel.py | 29 +- .../choropleth/_legendgrouptitle.py | 7 +- plotly/graph_objs/choropleth/_marker.py | 11 +- plotly/graph_objs/choropleth/_selected.py | 5 +- plotly/graph_objs/choropleth/_stream.py | 7 +- plotly/graph_objs/choropleth/_unselected.py | 5 +- .../choropleth/colorbar/_tickfont.py | 21 +- .../choropleth/colorbar/_tickformatstop.py | 13 +- .../graph_objs/choropleth/colorbar/_title.py | 9 +- .../choropleth/colorbar/title/_font.py | 21 +- .../graph_objs/choropleth/hoverlabel/_font.py | 57 +- .../choropleth/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/choropleth/marker/_line.py | 15 +- .../graph_objs/choropleth/selected/_marker.py | 5 +- .../choropleth/unselected/_marker.py | 5 +- plotly/graph_objs/choroplethmap/_colorbar.py | 105 +- .../graph_objs/choroplethmap/_hoverlabel.py | 29 +- .../choroplethmap/_legendgrouptitle.py | 7 +- plotly/graph_objs/choroplethmap/_marker.py | 11 +- plotly/graph_objs/choroplethmap/_selected.py | 5 +- plotly/graph_objs/choroplethmap/_stream.py | 7 +- .../graph_objs/choroplethmap/_unselected.py | 5 +- .../choroplethmap/colorbar/_tickfont.py | 21 +- .../choroplethmap/colorbar/_tickformatstop.py | 13 +- .../choroplethmap/colorbar/_title.py | 9 +- .../choroplethmap/colorbar/title/_font.py | 21 +- .../choroplethmap/hoverlabel/_font.py | 57 +- .../choroplethmap/legendgrouptitle/_font.py | 21 +- .../graph_objs/choroplethmap/marker/_line.py | 15 +- .../choroplethmap/selected/_marker.py | 5 +- .../choroplethmap/unselected/_marker.py | 5 +- .../graph_objs/choroplethmapbox/_colorbar.py | 105 +- .../choroplethmapbox/_hoverlabel.py | 29 +- .../choroplethmapbox/_legendgrouptitle.py | 7 +- plotly/graph_objs/choroplethmapbox/_marker.py | 11 +- .../graph_objs/choroplethmapbox/_selected.py | 5 +- plotly/graph_objs/choroplethmapbox/_stream.py | 7 +- .../choroplethmapbox/_unselected.py | 5 +- .../choroplethmapbox/colorbar/_tickfont.py | 21 +- .../colorbar/_tickformatstop.py | 13 +- .../choroplethmapbox/colorbar/_title.py | 9 +- .../choroplethmapbox/colorbar/title/_font.py | 21 +- .../choroplethmapbox/hoverlabel/_font.py | 57 +- .../legendgrouptitle/_font.py | 21 +- .../choroplethmapbox/marker/_line.py | 15 +- .../choroplethmapbox/selected/_marker.py | 5 +- .../choroplethmapbox/unselected/_marker.py | 5 +- plotly/graph_objs/cone/_colorbar.py | 105 +- plotly/graph_objs/cone/_hoverlabel.py | 29 +- plotly/graph_objs/cone/_legendgrouptitle.py | 7 +- plotly/graph_objs/cone/_lighting.py | 17 +- plotly/graph_objs/cone/_lightposition.py | 9 +- plotly/graph_objs/cone/_stream.py | 7 +- plotly/graph_objs/cone/colorbar/_tickfont.py | 21 +- .../cone/colorbar/_tickformatstop.py | 13 +- plotly/graph_objs/cone/colorbar/_title.py | 9 +- .../graph_objs/cone/colorbar/title/_font.py | 21 +- plotly/graph_objs/cone/hoverlabel/_font.py | 57 +- .../graph_objs/cone/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/contour/_colorbar.py | 105 +- plotly/graph_objs/contour/_contours.py | 25 +- plotly/graph_objs/contour/_hoverlabel.py | 29 +- .../graph_objs/contour/_legendgrouptitle.py | 7 +- plotly/graph_objs/contour/_line.py | 11 +- plotly/graph_objs/contour/_stream.py | 7 +- plotly/graph_objs/contour/_textfont.py | 21 +- .../graph_objs/contour/colorbar/_tickfont.py | 21 +- .../contour/colorbar/_tickformatstop.py | 13 +- plotly/graph_objs/contour/colorbar/_title.py | 9 +- .../contour/colorbar/title/_font.py | 21 +- .../graph_objs/contour/contours/_labelfont.py | 21 +- plotly/graph_objs/contour/hoverlabel/_font.py | 57 +- .../contour/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/contourcarpet/_colorbar.py | 105 +- plotly/graph_objs/contourcarpet/_contours.py | 25 +- .../contourcarpet/_legendgrouptitle.py | 7 +- plotly/graph_objs/contourcarpet/_line.py | 11 +- plotly/graph_objs/contourcarpet/_stream.py | 7 +- .../contourcarpet/colorbar/_tickfont.py | 21 +- .../contourcarpet/colorbar/_tickformatstop.py | 13 +- .../contourcarpet/colorbar/_title.py | 9 +- .../contourcarpet/colorbar/title/_font.py | 21 +- .../contourcarpet/contours/_labelfont.py | 21 +- .../contourcarpet/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/densitymap/_colorbar.py | 105 +- plotly/graph_objs/densitymap/_hoverlabel.py | 29 +- .../densitymap/_legendgrouptitle.py | 7 +- plotly/graph_objs/densitymap/_stream.py | 7 +- .../densitymap/colorbar/_tickfont.py | 21 +- .../densitymap/colorbar/_tickformatstop.py | 13 +- .../graph_objs/densitymap/colorbar/_title.py | 9 +- .../densitymap/colorbar/title/_font.py | 21 +- .../graph_objs/densitymap/hoverlabel/_font.py | 57 +- .../densitymap/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/densitymapbox/_colorbar.py | 105 +- .../graph_objs/densitymapbox/_hoverlabel.py | 29 +- .../densitymapbox/_legendgrouptitle.py | 7 +- plotly/graph_objs/densitymapbox/_stream.py | 7 +- .../densitymapbox/colorbar/_tickfont.py | 21 +- .../densitymapbox/colorbar/_tickformatstop.py | 13 +- .../densitymapbox/colorbar/_title.py | 9 +- .../densitymapbox/colorbar/title/_font.py | 21 +- .../densitymapbox/hoverlabel/_font.py | 57 +- .../densitymapbox/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/funnel/_connector.py | 9 +- plotly/graph_objs/funnel/_hoverlabel.py | 29 +- plotly/graph_objs/funnel/_insidetextfont.py | 57 +- plotly/graph_objs/funnel/_legendgrouptitle.py | 7 +- plotly/graph_objs/funnel/_marker.py | 37 +- plotly/graph_objs/funnel/_outsidetextfont.py | 57 +- plotly/graph_objs/funnel/_stream.py | 7 +- plotly/graph_objs/funnel/_textfont.py | 57 +- plotly/graph_objs/funnel/connector/_line.py | 9 +- plotly/graph_objs/funnel/hoverlabel/_font.py | 57 +- .../funnel/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/funnel/marker/_colorbar.py | 105 +- plotly/graph_objs/funnel/marker/_line.py | 31 +- .../funnel/marker/colorbar/_tickfont.py | 21 +- .../funnel/marker/colorbar/_tickformatstop.py | 13 +- .../funnel/marker/colorbar/_title.py | 9 +- .../funnel/marker/colorbar/title/_font.py | 21 +- plotly/graph_objs/funnelarea/_domain.py | 11 +- plotly/graph_objs/funnelarea/_hoverlabel.py | 29 +- .../graph_objs/funnelarea/_insidetextfont.py | 57 +- .../funnelarea/_legendgrouptitle.py | 7 +- plotly/graph_objs/funnelarea/_marker.py | 13 +- plotly/graph_objs/funnelarea/_stream.py | 7 +- plotly/graph_objs/funnelarea/_textfont.py | 57 +- plotly/graph_objs/funnelarea/_title.py | 9 +- .../graph_objs/funnelarea/hoverlabel/_font.py | 57 +- .../funnelarea/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/funnelarea/marker/_line.py | 15 +- .../graph_objs/funnelarea/marker/_pattern.py | 37 +- plotly/graph_objs/funnelarea/title/_font.py | 57 +- plotly/graph_objs/heatmap/_colorbar.py | 105 +- plotly/graph_objs/heatmap/_hoverlabel.py | 29 +- .../graph_objs/heatmap/_legendgrouptitle.py | 7 +- plotly/graph_objs/heatmap/_stream.py | 7 +- plotly/graph_objs/heatmap/_textfont.py | 21 +- .../graph_objs/heatmap/colorbar/_tickfont.py | 21 +- .../heatmap/colorbar/_tickformatstop.py | 13 +- plotly/graph_objs/heatmap/colorbar/_title.py | 9 +- .../heatmap/colorbar/title/_font.py | 21 +- plotly/graph_objs/heatmap/hoverlabel/_font.py | 57 +- .../heatmap/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/histogram/_cumulative.py | 9 +- plotly/graph_objs/histogram/_error_x.py | 37 +- plotly/graph_objs/histogram/_error_y.py | 35 +- plotly/graph_objs/histogram/_hoverlabel.py | 29 +- .../graph_objs/histogram/_insidetextfont.py | 21 +- .../graph_objs/histogram/_legendgrouptitle.py | 7 +- plotly/graph_objs/histogram/_marker.py | 41 +- .../graph_objs/histogram/_outsidetextfont.py | 21 +- plotly/graph_objs/histogram/_selected.py | 7 +- plotly/graph_objs/histogram/_stream.py | 7 +- plotly/graph_objs/histogram/_textfont.py | 21 +- plotly/graph_objs/histogram/_unselected.py | 7 +- plotly/graph_objs/histogram/_xbins.py | 9 +- plotly/graph_objs/histogram/_ybins.py | 9 +- .../graph_objs/histogram/hoverlabel/_font.py | 57 +- .../histogram/legendgrouptitle/_font.py | 21 +- .../graph_objs/histogram/marker/_colorbar.py | 105 +- plotly/graph_objs/histogram/marker/_line.py | 31 +- .../graph_objs/histogram/marker/_pattern.py | 37 +- .../histogram/marker/colorbar/_tickfont.py | 21 +- .../marker/colorbar/_tickformatstop.py | 13 +- .../histogram/marker/colorbar/_title.py | 9 +- .../histogram/marker/colorbar/title/_font.py | 21 +- .../graph_objs/histogram/selected/_marker.py | 7 +- .../histogram/selected/_textfont.py | 5 +- .../histogram/unselected/_marker.py | 7 +- .../histogram/unselected/_textfont.py | 5 +- plotly/graph_objs/histogram2d/_colorbar.py | 105 +- plotly/graph_objs/histogram2d/_hoverlabel.py | 29 +- .../histogram2d/_legendgrouptitle.py | 7 +- plotly/graph_objs/histogram2d/_marker.py | 9 +- plotly/graph_objs/histogram2d/_stream.py | 7 +- plotly/graph_objs/histogram2d/_textfont.py | 21 +- plotly/graph_objs/histogram2d/_xbins.py | 9 +- plotly/graph_objs/histogram2d/_ybins.py | 9 +- .../histogram2d/colorbar/_tickfont.py | 21 +- .../histogram2d/colorbar/_tickformatstop.py | 13 +- .../graph_objs/histogram2d/colorbar/_title.py | 9 +- .../histogram2d/colorbar/title/_font.py | 21 +- .../histogram2d/hoverlabel/_font.py | 57 +- .../histogram2d/legendgrouptitle/_font.py | 21 +- .../histogram2dcontour/_colorbar.py | 105 +- .../histogram2dcontour/_contours.py | 25 +- .../histogram2dcontour/_hoverlabel.py | 29 +- .../histogram2dcontour/_legendgrouptitle.py | 7 +- plotly/graph_objs/histogram2dcontour/_line.py | 11 +- .../graph_objs/histogram2dcontour/_marker.py | 9 +- .../graph_objs/histogram2dcontour/_stream.py | 7 +- .../histogram2dcontour/_textfont.py | 21 +- .../graph_objs/histogram2dcontour/_xbins.py | 9 +- .../graph_objs/histogram2dcontour/_ybins.py | 9 +- .../histogram2dcontour/colorbar/_tickfont.py | 21 +- .../colorbar/_tickformatstop.py | 13 +- .../histogram2dcontour/colorbar/_title.py | 9 +- .../colorbar/title/_font.py | 21 +- .../histogram2dcontour/contours/_labelfont.py | 21 +- .../histogram2dcontour/hoverlabel/_font.py | 57 +- .../legendgrouptitle/_font.py | 21 +- plotly/graph_objs/icicle/_domain.py | 11 +- plotly/graph_objs/icicle/_hoverlabel.py | 29 +- plotly/graph_objs/icicle/_insidetextfont.py | 57 +- plotly/graph_objs/icicle/_leaf.py | 5 +- plotly/graph_objs/icicle/_legendgrouptitle.py | 7 +- plotly/graph_objs/icicle/_marker.py | 33 +- plotly/graph_objs/icicle/_outsidetextfont.py | 57 +- plotly/graph_objs/icicle/_pathbar.py | 13 +- plotly/graph_objs/icicle/_root.py | 5 +- plotly/graph_objs/icicle/_stream.py | 7 +- plotly/graph_objs/icicle/_textfont.py | 57 +- plotly/graph_objs/icicle/_tiling.py | 9 +- plotly/graph_objs/icicle/hoverlabel/_font.py | 57 +- .../icicle/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/icicle/marker/_colorbar.py | 105 +- plotly/graph_objs/icicle/marker/_line.py | 15 +- plotly/graph_objs/icicle/marker/_pattern.py | 37 +- .../icicle/marker/colorbar/_tickfont.py | 21 +- .../icicle/marker/colorbar/_tickformatstop.py | 13 +- .../icicle/marker/colorbar/_title.py | 9 +- .../icicle/marker/colorbar/title/_font.py | 21 +- plotly/graph_objs/icicle/pathbar/_textfont.py | 57 +- plotly/graph_objs/image/_hoverlabel.py | 29 +- plotly/graph_objs/image/_legendgrouptitle.py | 7 +- plotly/graph_objs/image/_stream.py | 7 +- plotly/graph_objs/image/hoverlabel/_font.py | 57 +- .../image/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/indicator/_delta.py | 21 +- plotly/graph_objs/indicator/_domain.py | 11 +- plotly/graph_objs/indicator/_gauge.py | 21 +- .../graph_objs/indicator/_legendgrouptitle.py | 7 +- plotly/graph_objs/indicator/_number.py | 11 +- plotly/graph_objs/indicator/_stream.py | 7 +- plotly/graph_objs/indicator/_title.py | 9 +- .../graph_objs/indicator/delta/_decreasing.py | 7 +- plotly/graph_objs/indicator/delta/_font.py | 21 +- .../graph_objs/indicator/delta/_increasing.py | 7 +- plotly/graph_objs/indicator/gauge/_axis.py | 67 +- plotly/graph_objs/indicator/gauge/_bar.py | 9 +- plotly/graph_objs/indicator/gauge/_step.py | 15 +- .../graph_objs/indicator/gauge/_threshold.py | 9 +- .../indicator/gauge/axis/_tickfont.py | 21 +- .../indicator/gauge/axis/_tickformatstop.py | 13 +- .../graph_objs/indicator/gauge/bar/_line.py | 7 +- .../graph_objs/indicator/gauge/step/_line.py | 7 +- .../indicator/gauge/threshold/_line.py | 7 +- .../indicator/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/indicator/number/_font.py | 21 +- plotly/graph_objs/indicator/title/_font.py | 21 +- plotly/graph_objs/isosurface/_caps.py | 9 +- plotly/graph_objs/isosurface/_colorbar.py | 105 +- plotly/graph_objs/isosurface/_contour.py | 9 +- plotly/graph_objs/isosurface/_hoverlabel.py | 29 +- .../isosurface/_legendgrouptitle.py | 7 +- plotly/graph_objs/isosurface/_lighting.py | 17 +- .../graph_objs/isosurface/_lightposition.py | 9 +- plotly/graph_objs/isosurface/_slices.py | 9 +- plotly/graph_objs/isosurface/_spaceframe.py | 7 +- plotly/graph_objs/isosurface/_stream.py | 7 +- plotly/graph_objs/isosurface/_surface.py | 11 +- plotly/graph_objs/isosurface/caps/_x.py | 7 +- plotly/graph_objs/isosurface/caps/_y.py | 7 +- plotly/graph_objs/isosurface/caps/_z.py | 7 +- .../isosurface/colorbar/_tickfont.py | 21 +- .../isosurface/colorbar/_tickformatstop.py | 13 +- .../graph_objs/isosurface/colorbar/_title.py | 9 +- .../isosurface/colorbar/title/_font.py | 21 +- .../graph_objs/isosurface/hoverlabel/_font.py | 57 +- .../isosurface/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/isosurface/slices/_x.py | 13 +- plotly/graph_objs/isosurface/slices/_y.py | 13 +- plotly/graph_objs/isosurface/slices/_z.py | 13 +- plotly/graph_objs/layout/_activeselection.py | 7 +- plotly/graph_objs/layout/_activeshape.py | 7 +- plotly/graph_objs/layout/_annotation.py | 89 +- plotly/graph_objs/layout/_coloraxis.py | 21 +- plotly/graph_objs/layout/_colorscale.py | 9 +- plotly/graph_objs/layout/_font.py | 21 +- plotly/graph_objs/layout/_geo.py | 67 +- plotly/graph_objs/layout/_grid.py | 27 +- plotly/graph_objs/layout/_hoverlabel.py | 15 +- plotly/graph_objs/layout/_image.py | 33 +- plotly/graph_objs/layout/_legend.py | 55 +- plotly/graph_objs/layout/_map.py | 23 +- plotly/graph_objs/layout/_mapbox.py | 25 +- plotly/graph_objs/layout/_margin.py | 15 +- plotly/graph_objs/layout/_modebar.py | 25 +- plotly/graph_objs/layout/_newselection.py | 7 +- plotly/graph_objs/layout/_newshape.py | 33 +- plotly/graph_objs/layout/_polar.py | 23 +- plotly/graph_objs/layout/_scene.py | 29 +- plotly/graph_objs/layout/_selection.py | 27 +- plotly/graph_objs/layout/_shape.py | 67 +- plotly/graph_objs/layout/_slider.py | 51 +- plotly/graph_objs/layout/_smith.py | 11 +- plotly/graph_objs/layout/_template.py | 7 +- plotly/graph_objs/layout/_ternary.py | 17 +- plotly/graph_objs/layout/_title.py | 25 +- plotly/graph_objs/layout/_transition.py | 9 +- plotly/graph_objs/layout/_uniformtext.py | 7 +- plotly/graph_objs/layout/_updatemenu.py | 39 +- plotly/graph_objs/layout/_xaxis.py | 197 +- plotly/graph_objs/layout/_yaxis.py | 197 +- plotly/graph_objs/layout/annotation/_font.py | 21 +- .../layout/annotation/_hoverlabel.py | 9 +- .../layout/annotation/hoverlabel/_font.py | 21 +- .../graph_objs/layout/coloraxis/_colorbar.py | 105 +- .../layout/coloraxis/colorbar/_tickfont.py | 21 +- .../coloraxis/colorbar/_tickformatstop.py | 13 +- .../layout/coloraxis/colorbar/_title.py | 9 +- .../layout/coloraxis/colorbar/title/_font.py | 21 +- plotly/graph_objs/layout/geo/_center.py | 7 +- plotly/graph_objs/layout/geo/_domain.py | 11 +- plotly/graph_objs/layout/geo/_lataxis.py | 17 +- plotly/graph_objs/layout/geo/_lonaxis.py | 17 +- plotly/graph_objs/layout/geo/_projection.py | 15 +- .../layout/geo/projection/_rotation.py | 9 +- plotly/graph_objs/layout/grid/_domain.py | 7 +- plotly/graph_objs/layout/hoverlabel/_font.py | 21 +- .../layout/hoverlabel/_grouptitlefont.py | 21 +- plotly/graph_objs/layout/legend/_font.py | 21 +- .../layout/legend/_grouptitlefont.py | 21 +- plotly/graph_objs/layout/legend/_title.py | 9 +- .../graph_objs/layout/legend/title/_font.py | 21 +- plotly/graph_objs/layout/map/_bounds.py | 11 +- plotly/graph_objs/layout/map/_center.py | 7 +- plotly/graph_objs/layout/map/_domain.py | 11 +- plotly/graph_objs/layout/map/_layer.py | 39 +- plotly/graph_objs/layout/map/layer/_circle.py | 5 +- plotly/graph_objs/layout/map/layer/_fill.py | 5 +- plotly/graph_objs/layout/map/layer/_line.py | 11 +- plotly/graph_objs/layout/map/layer/_symbol.py | 15 +- .../layout/map/layer/symbol/_textfont.py | 13 +- plotly/graph_objs/layout/mapbox/_bounds.py | 11 +- plotly/graph_objs/layout/mapbox/_center.py | 7 +- plotly/graph_objs/layout/mapbox/_domain.py | 11 +- plotly/graph_objs/layout/mapbox/_layer.py | 39 +- .../graph_objs/layout/mapbox/layer/_circle.py | 5 +- .../graph_objs/layout/mapbox/layer/_fill.py | 5 +- .../graph_objs/layout/mapbox/layer/_line.py | 11 +- .../graph_objs/layout/mapbox/layer/_symbol.py | 15 +- .../layout/mapbox/layer/symbol/_textfont.py | 13 +- .../graph_objs/layout/newselection/_line.py | 9 +- plotly/graph_objs/layout/newshape/_label.py | 19 +- .../layout/newshape/_legendgrouptitle.py | 7 +- plotly/graph_objs/layout/newshape/_line.py | 9 +- .../graph_objs/layout/newshape/label/_font.py | 21 +- .../layout/newshape/legendgrouptitle/_font.py | 21 +- .../graph_objs/layout/polar/_angularaxis.py | 107 +- plotly/graph_objs/layout/polar/_domain.py | 11 +- plotly/graph_objs/layout/polar/_radialaxis.py | 121 +- .../layout/polar/angularaxis/_tickfont.py | 21 +- .../polar/angularaxis/_tickformatstop.py | 13 +- .../polar/radialaxis/_autorangeoptions.py | 17 +- .../layout/polar/radialaxis/_tickfont.py | 21 +- .../polar/radialaxis/_tickformatstop.py | 13 +- .../layout/polar/radialaxis/_title.py | 7 +- .../layout/polar/radialaxis/title/_font.py | 21 +- plotly/graph_objs/layout/scene/_annotation.py | 77 +- .../graph_objs/layout/scene/_aspectratio.py | 9 +- plotly/graph_objs/layout/scene/_camera.py | 11 +- plotly/graph_objs/layout/scene/_domain.py | 11 +- plotly/graph_objs/layout/scene/_xaxis.py | 129 +- plotly/graph_objs/layout/scene/_yaxis.py | 129 +- plotly/graph_objs/layout/scene/_zaxis.py | 129 +- .../layout/scene/annotation/_font.py | 21 +- .../layout/scene/annotation/_hoverlabel.py | 9 +- .../scene/annotation/hoverlabel/_font.py | 21 +- .../graph_objs/layout/scene/camera/_center.py | 9 +- plotly/graph_objs/layout/scene/camera/_eye.py | 9 +- .../layout/scene/camera/_projection.py | 5 +- plotly/graph_objs/layout/scene/camera/_up.py | 9 +- .../layout/scene/xaxis/_autorangeoptions.py | 17 +- .../layout/scene/xaxis/_tickfont.py | 21 +- .../layout/scene/xaxis/_tickformatstop.py | 13 +- .../graph_objs/layout/scene/xaxis/_title.py | 7 +- .../layout/scene/xaxis/title/_font.py | 21 +- .../layout/scene/yaxis/_autorangeoptions.py | 17 +- .../layout/scene/yaxis/_tickfont.py | 21 +- .../layout/scene/yaxis/_tickformatstop.py | 13 +- .../graph_objs/layout/scene/yaxis/_title.py | 7 +- .../layout/scene/yaxis/title/_font.py | 21 +- .../layout/scene/zaxis/_autorangeoptions.py | 17 +- .../layout/scene/zaxis/_tickfont.py | 21 +- .../layout/scene/zaxis/_tickformatstop.py | 13 +- .../graph_objs/layout/scene/zaxis/_title.py | 7 +- .../layout/scene/zaxis/title/_font.py | 21 +- plotly/graph_objs/layout/selection/_line.py | 9 +- plotly/graph_objs/layout/shape/_label.py | 19 +- .../layout/shape/_legendgrouptitle.py | 7 +- plotly/graph_objs/layout/shape/_line.py | 9 +- plotly/graph_objs/layout/shape/label/_font.py | 21 +- .../layout/shape/legendgrouptitle/_font.py | 21 +- .../graph_objs/layout/slider/_currentvalue.py | 15 +- plotly/graph_objs/layout/slider/_font.py | 21 +- plotly/graph_objs/layout/slider/_pad.py | 11 +- plotly/graph_objs/layout/slider/_step.py | 19 +- .../graph_objs/layout/slider/_transition.py | 7 +- .../layout/slider/currentvalue/_font.py | 21 +- plotly/graph_objs/layout/smith/_domain.py | 11 +- .../graph_objs/layout/smith/_imaginaryaxis.py | 55 +- plotly/graph_objs/layout/smith/_realaxis.py | 59 +- .../layout/smith/imaginaryaxis/_tickfont.py | 21 +- .../layout/smith/realaxis/_tickfont.py | 21 +- plotly/graph_objs/layout/template/_data.py | 101 +- plotly/graph_objs/layout/ternary/_aaxis.py | 89 +- plotly/graph_objs/layout/ternary/_baxis.py | 89 +- plotly/graph_objs/layout/ternary/_caxis.py | 89 +- plotly/graph_objs/layout/ternary/_domain.py | 11 +- .../layout/ternary/aaxis/_tickfont.py | 21 +- .../layout/ternary/aaxis/_tickformatstop.py | 13 +- .../graph_objs/layout/ternary/aaxis/_title.py | 7 +- .../layout/ternary/aaxis/title/_font.py | 21 +- .../layout/ternary/baxis/_tickfont.py | 21 +- .../layout/ternary/baxis/_tickformatstop.py | 13 +- .../graph_objs/layout/ternary/baxis/_title.py | 7 +- .../layout/ternary/baxis/title/_font.py | 21 +- .../layout/ternary/caxis/_tickfont.py | 21 +- .../layout/ternary/caxis/_tickformatstop.py | 13 +- .../graph_objs/layout/ternary/caxis/_title.py | 7 +- .../layout/ternary/caxis/title/_font.py | 21 +- plotly/graph_objs/layout/title/_font.py | 21 +- plotly/graph_objs/layout/title/_pad.py | 11 +- plotly/graph_objs/layout/title/_subtitle.py | 7 +- .../graph_objs/layout/title/subtitle/_font.py | 21 +- .../graph_objs/layout/updatemenu/_button.py | 19 +- plotly/graph_objs/layout/updatemenu/_font.py | 21 +- plotly/graph_objs/layout/updatemenu/_pad.py | 11 +- .../layout/xaxis/_autorangeoptions.py | 17 +- plotly/graph_objs/layout/xaxis/_minor.py | 33 +- plotly/graph_objs/layout/xaxis/_rangebreak.py | 17 +- .../graph_objs/layout/xaxis/_rangeselector.py | 27 +- .../graph_objs/layout/xaxis/_rangeslider.py | 19 +- plotly/graph_objs/layout/xaxis/_tickfont.py | 21 +- .../layout/xaxis/_tickformatstop.py | 13 +- plotly/graph_objs/layout/xaxis/_title.py | 9 +- .../layout/xaxis/rangeselector/_button.py | 17 +- .../layout/xaxis/rangeselector/_font.py | 21 +- .../layout/xaxis/rangeslider/_yaxis.py | 7 +- plotly/graph_objs/layout/xaxis/title/_font.py | 21 +- .../layout/yaxis/_autorangeoptions.py | 17 +- plotly/graph_objs/layout/yaxis/_minor.py | 33 +- plotly/graph_objs/layout/yaxis/_rangebreak.py | 17 +- plotly/graph_objs/layout/yaxis/_tickfont.py | 21 +- .../layout/yaxis/_tickformatstop.py | 13 +- plotly/graph_objs/layout/yaxis/_title.py | 9 +- plotly/graph_objs/layout/yaxis/title/_font.py | 21 +- plotly/graph_objs/mesh3d/_colorbar.py | 105 +- plotly/graph_objs/mesh3d/_contour.py | 9 +- plotly/graph_objs/mesh3d/_hoverlabel.py | 29 +- plotly/graph_objs/mesh3d/_legendgrouptitle.py | 7 +- plotly/graph_objs/mesh3d/_lighting.py | 17 +- plotly/graph_objs/mesh3d/_lightposition.py | 9 +- plotly/graph_objs/mesh3d/_stream.py | 7 +- .../graph_objs/mesh3d/colorbar/_tickfont.py | 21 +- .../mesh3d/colorbar/_tickformatstop.py | 13 +- plotly/graph_objs/mesh3d/colorbar/_title.py | 9 +- .../graph_objs/mesh3d/colorbar/title/_font.py | 21 +- plotly/graph_objs/mesh3d/hoverlabel/_font.py | 57 +- .../mesh3d/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/ohlc/_decreasing.py | 5 +- plotly/graph_objs/ohlc/_hoverlabel.py | 31 +- plotly/graph_objs/ohlc/_increasing.py | 5 +- plotly/graph_objs/ohlc/_legendgrouptitle.py | 7 +- plotly/graph_objs/ohlc/_line.py | 7 +- plotly/graph_objs/ohlc/_stream.py | 7 +- plotly/graph_objs/ohlc/decreasing/_line.py | 9 +- plotly/graph_objs/ohlc/hoverlabel/_font.py | 57 +- plotly/graph_objs/ohlc/increasing/_line.py | 9 +- .../graph_objs/ohlc/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/parcats/_dimension.py | 29 +- plotly/graph_objs/parcats/_domain.py | 11 +- plotly/graph_objs/parcats/_labelfont.py | 21 +- .../graph_objs/parcats/_legendgrouptitle.py | 7 +- plotly/graph_objs/parcats/_line.py | 33 +- plotly/graph_objs/parcats/_stream.py | 7 +- plotly/graph_objs/parcats/_tickfont.py | 21 +- .../parcats/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/parcats/line/_colorbar.py | 105 +- .../parcats/line/colorbar/_tickfont.py | 21 +- .../parcats/line/colorbar/_tickformatstop.py | 13 +- .../parcats/line/colorbar/_title.py | 9 +- .../parcats/line/colorbar/title/_font.py | 21 +- plotly/graph_objs/parcoords/_dimension.py | 37 +- plotly/graph_objs/parcoords/_domain.py | 11 +- plotly/graph_objs/parcoords/_labelfont.py | 21 +- .../graph_objs/parcoords/_legendgrouptitle.py | 7 +- plotly/graph_objs/parcoords/_line.py | 29 +- plotly/graph_objs/parcoords/_rangefont.py | 21 +- plotly/graph_objs/parcoords/_stream.py | 7 +- plotly/graph_objs/parcoords/_tickfont.py | 21 +- plotly/graph_objs/parcoords/_unselected.py | 5 +- .../parcoords/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/parcoords/line/_colorbar.py | 105 +- .../parcoords/line/colorbar/_tickfont.py | 21 +- .../line/colorbar/_tickformatstop.py | 13 +- .../parcoords/line/colorbar/_title.py | 9 +- .../parcoords/line/colorbar/title/_font.py | 21 +- .../graph_objs/parcoords/unselected/_line.py | 7 +- plotly/graph_objs/pie/_domain.py | 11 +- plotly/graph_objs/pie/_hoverlabel.py | 29 +- plotly/graph_objs/pie/_insidetextfont.py | 57 +- plotly/graph_objs/pie/_legendgrouptitle.py | 7 +- plotly/graph_objs/pie/_marker.py | 13 +- plotly/graph_objs/pie/_outsidetextfont.py | 57 +- plotly/graph_objs/pie/_stream.py | 7 +- plotly/graph_objs/pie/_textfont.py | 57 +- plotly/graph_objs/pie/_title.py | 9 +- plotly/graph_objs/pie/hoverlabel/_font.py | 57 +- .../graph_objs/pie/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/pie/marker/_line.py | 15 +- plotly/graph_objs/pie/marker/_pattern.py | 37 +- plotly/graph_objs/pie/title/_font.py | 57 +- plotly/graph_objs/sankey/_domain.py | 11 +- plotly/graph_objs/sankey/_hoverlabel.py | 29 +- plotly/graph_objs/sankey/_legendgrouptitle.py | 7 +- plotly/graph_objs/sankey/_link.py | 63 +- plotly/graph_objs/sankey/_node.py | 53 +- plotly/graph_objs/sankey/_stream.py | 7 +- plotly/graph_objs/sankey/_textfont.py | 21 +- plotly/graph_objs/sankey/hoverlabel/_font.py | 57 +- .../sankey/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/sankey/link/_colorscale.py | 15 +- plotly/graph_objs/sankey/link/_hoverlabel.py | 29 +- plotly/graph_objs/sankey/link/_line.py | 15 +- .../sankey/link/hoverlabel/_font.py | 57 +- plotly/graph_objs/sankey/node/_hoverlabel.py | 29 +- plotly/graph_objs/sankey/node/_line.py | 15 +- .../sankey/node/hoverlabel/_font.py | 57 +- plotly/graph_objs/scatter/_error_x.py | 37 +- plotly/graph_objs/scatter/_error_y.py | 35 +- plotly/graph_objs/scatter/_fillgradient.py | 11 +- plotly/graph_objs/scatter/_fillpattern.py | 37 +- plotly/graph_objs/scatter/_hoverlabel.py | 29 +- .../graph_objs/scatter/_legendgrouptitle.py | 7 +- plotly/graph_objs/scatter/_line.py | 21 +- plotly/graph_objs/scatter/_marker.py | 73 +- plotly/graph_objs/scatter/_selected.py | 7 +- plotly/graph_objs/scatter/_stream.py | 7 +- plotly/graph_objs/scatter/_textfont.py | 57 +- plotly/graph_objs/scatter/_unselected.py | 7 +- plotly/graph_objs/scatter/hoverlabel/_font.py | 57 +- .../scatter/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/scatter/marker/_colorbar.py | 105 +- plotly/graph_objs/scatter/marker/_gradient.py | 15 +- plotly/graph_objs/scatter/marker/_line.py | 31 +- .../scatter/marker/colorbar/_tickfont.py | 21 +- .../marker/colorbar/_tickformatstop.py | 13 +- .../scatter/marker/colorbar/_title.py | 9 +- .../scatter/marker/colorbar/title/_font.py | 21 +- plotly/graph_objs/scatter/selected/_marker.py | 9 +- .../graph_objs/scatter/selected/_textfont.py | 5 +- .../graph_objs/scatter/unselected/_marker.py | 9 +- .../scatter/unselected/_textfont.py | 5 +- plotly/graph_objs/scatter3d/_error_x.py | 37 +- plotly/graph_objs/scatter3d/_error_y.py | 37 +- plotly/graph_objs/scatter3d/_error_z.py | 35 +- plotly/graph_objs/scatter3d/_hoverlabel.py | 29 +- .../graph_objs/scatter3d/_legendgrouptitle.py | 7 +- plotly/graph_objs/scatter3d/_line.py | 33 +- plotly/graph_objs/scatter3d/_marker.py | 51 +- plotly/graph_objs/scatter3d/_projection.py | 9 +- plotly/graph_objs/scatter3d/_stream.py | 7 +- plotly/graph_objs/scatter3d/_textfont.py | 39 +- .../graph_objs/scatter3d/hoverlabel/_font.py | 57 +- .../scatter3d/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/scatter3d/line/_colorbar.py | 105 +- .../scatter3d/line/colorbar/_tickfont.py | 21 +- .../line/colorbar/_tickformatstop.py | 13 +- .../scatter3d/line/colorbar/_title.py | 9 +- .../scatter3d/line/colorbar/title/_font.py | 21 +- .../graph_objs/scatter3d/marker/_colorbar.py | 105 +- plotly/graph_objs/scatter3d/marker/_line.py | 27 +- .../scatter3d/marker/colorbar/_tickfont.py | 21 +- .../marker/colorbar/_tickformatstop.py | 13 +- .../scatter3d/marker/colorbar/_title.py | 9 +- .../scatter3d/marker/colorbar/title/_font.py | 21 +- plotly/graph_objs/scatter3d/projection/_x.py | 9 +- plotly/graph_objs/scatter3d/projection/_y.py | 9 +- plotly/graph_objs/scatter3d/projection/_z.py | 9 +- .../graph_objs/scattercarpet/_hoverlabel.py | 29 +- .../scattercarpet/_legendgrouptitle.py | 7 +- plotly/graph_objs/scattercarpet/_line.py | 19 +- plotly/graph_objs/scattercarpet/_marker.py | 73 +- plotly/graph_objs/scattercarpet/_selected.py | 7 +- plotly/graph_objs/scattercarpet/_stream.py | 7 +- plotly/graph_objs/scattercarpet/_textfont.py | 57 +- .../graph_objs/scattercarpet/_unselected.py | 7 +- .../scattercarpet/hoverlabel/_font.py | 57 +- .../scattercarpet/legendgrouptitle/_font.py | 21 +- .../scattercarpet/marker/_colorbar.py | 105 +- .../scattercarpet/marker/_gradient.py | 15 +- .../graph_objs/scattercarpet/marker/_line.py | 31 +- .../marker/colorbar/_tickfont.py | 21 +- .../marker/colorbar/_tickformatstop.py | 13 +- .../scattercarpet/marker/colorbar/_title.py | 9 +- .../marker/colorbar/title/_font.py | 21 +- .../scattercarpet/selected/_marker.py | 9 +- .../scattercarpet/selected/_textfont.py | 5 +- .../scattercarpet/unselected/_marker.py | 9 +- .../scattercarpet/unselected/_textfont.py | 5 +- plotly/graph_objs/scattergeo/_hoverlabel.py | 29 +- .../scattergeo/_legendgrouptitle.py | 7 +- plotly/graph_objs/scattergeo/_line.py | 9 +- plotly/graph_objs/scattergeo/_marker.py | 71 +- plotly/graph_objs/scattergeo/_selected.py | 7 +- plotly/graph_objs/scattergeo/_stream.py | 7 +- plotly/graph_objs/scattergeo/_textfont.py | 57 +- plotly/graph_objs/scattergeo/_unselected.py | 7 +- .../graph_objs/scattergeo/hoverlabel/_font.py | 57 +- .../scattergeo/legendgrouptitle/_font.py | 21 +- .../graph_objs/scattergeo/marker/_colorbar.py | 105 +- .../graph_objs/scattergeo/marker/_gradient.py | 15 +- plotly/graph_objs/scattergeo/marker/_line.py | 31 +- .../scattergeo/marker/colorbar/_tickfont.py | 21 +- .../marker/colorbar/_tickformatstop.py | 13 +- .../scattergeo/marker/colorbar/_title.py | 9 +- .../scattergeo/marker/colorbar/title/_font.py | 21 +- .../graph_objs/scattergeo/selected/_marker.py | 9 +- .../scattergeo/selected/_textfont.py | 5 +- .../scattergeo/unselected/_marker.py | 9 +- .../scattergeo/unselected/_textfont.py | 5 +- plotly/graph_objs/scattergl/_error_x.py | 37 +- plotly/graph_objs/scattergl/_error_y.py | 35 +- plotly/graph_objs/scattergl/_hoverlabel.py | 29 +- .../graph_objs/scattergl/_legendgrouptitle.py | 7 +- plotly/graph_objs/scattergl/_line.py | 11 +- plotly/graph_objs/scattergl/_marker.py | 61 +- plotly/graph_objs/scattergl/_selected.py | 7 +- plotly/graph_objs/scattergl/_stream.py | 7 +- plotly/graph_objs/scattergl/_textfont.py | 39 +- plotly/graph_objs/scattergl/_unselected.py | 7 +- .../graph_objs/scattergl/hoverlabel/_font.py | 57 +- .../scattergl/legendgrouptitle/_font.py | 21 +- .../graph_objs/scattergl/marker/_colorbar.py | 105 +- plotly/graph_objs/scattergl/marker/_line.py | 31 +- .../scattergl/marker/colorbar/_tickfont.py | 21 +- .../marker/colorbar/_tickformatstop.py | 13 +- .../scattergl/marker/colorbar/_title.py | 9 +- .../scattergl/marker/colorbar/title/_font.py | 21 +- .../graph_objs/scattergl/selected/_marker.py | 9 +- .../scattergl/selected/_textfont.py | 5 +- .../scattergl/unselected/_marker.py | 9 +- .../scattergl/unselected/_textfont.py | 5 +- plotly/graph_objs/scattermap/_cluster.py | 31 +- plotly/graph_objs/scattermap/_hoverlabel.py | 29 +- .../scattermap/_legendgrouptitle.py | 7 +- plotly/graph_objs/scattermap/_line.py | 7 +- plotly/graph_objs/scattermap/_marker.py | 61 +- plotly/graph_objs/scattermap/_selected.py | 5 +- plotly/graph_objs/scattermap/_stream.py | 7 +- plotly/graph_objs/scattermap/_textfont.py | 13 +- plotly/graph_objs/scattermap/_unselected.py | 5 +- .../graph_objs/scattermap/hoverlabel/_font.py | 57 +- .../scattermap/legendgrouptitle/_font.py | 21 +- .../graph_objs/scattermap/marker/_colorbar.py | 105 +- .../scattermap/marker/colorbar/_tickfont.py | 21 +- .../marker/colorbar/_tickformatstop.py | 13 +- .../scattermap/marker/colorbar/_title.py | 9 +- .../scattermap/marker/colorbar/title/_font.py | 21 +- .../graph_objs/scattermap/selected/_marker.py | 9 +- .../scattermap/unselected/_marker.py | 9 +- plotly/graph_objs/scattermapbox/_cluster.py | 31 +- .../graph_objs/scattermapbox/_hoverlabel.py | 29 +- .../scattermapbox/_legendgrouptitle.py | 7 +- plotly/graph_objs/scattermapbox/_line.py | 7 +- plotly/graph_objs/scattermapbox/_marker.py | 61 +- plotly/graph_objs/scattermapbox/_selected.py | 5 +- plotly/graph_objs/scattermapbox/_stream.py | 7 +- plotly/graph_objs/scattermapbox/_textfont.py | 13 +- .../graph_objs/scattermapbox/_unselected.py | 5 +- .../scattermapbox/hoverlabel/_font.py | 57 +- .../scattermapbox/legendgrouptitle/_font.py | 21 +- .../scattermapbox/marker/_colorbar.py | 105 +- .../marker/colorbar/_tickfont.py | 21 +- .../marker/colorbar/_tickformatstop.py | 13 +- .../scattermapbox/marker/colorbar/_title.py | 9 +- .../marker/colorbar/title/_font.py | 21 +- .../scattermapbox/selected/_marker.py | 9 +- .../scattermapbox/unselected/_marker.py | 9 +- plotly/graph_objs/scatterpolar/_hoverlabel.py | 29 +- .../scatterpolar/_legendgrouptitle.py | 7 +- plotly/graph_objs/scatterpolar/_line.py | 19 +- plotly/graph_objs/scatterpolar/_marker.py | 73 +- plotly/graph_objs/scatterpolar/_selected.py | 7 +- plotly/graph_objs/scatterpolar/_stream.py | 7 +- plotly/graph_objs/scatterpolar/_textfont.py | 57 +- plotly/graph_objs/scatterpolar/_unselected.py | 7 +- .../scatterpolar/hoverlabel/_font.py | 57 +- .../scatterpolar/legendgrouptitle/_font.py | 21 +- .../scatterpolar/marker/_colorbar.py | 105 +- .../scatterpolar/marker/_gradient.py | 15 +- .../graph_objs/scatterpolar/marker/_line.py | 31 +- .../scatterpolar/marker/colorbar/_tickfont.py | 21 +- .../marker/colorbar/_tickformatstop.py | 13 +- .../scatterpolar/marker/colorbar/_title.py | 9 +- .../marker/colorbar/title/_font.py | 21 +- .../scatterpolar/selected/_marker.py | 9 +- .../scatterpolar/selected/_textfont.py | 5 +- .../scatterpolar/unselected/_marker.py | 9 +- .../scatterpolar/unselected/_textfont.py | 5 +- .../graph_objs/scatterpolargl/_hoverlabel.py | 29 +- .../scatterpolargl/_legendgrouptitle.py | 7 +- plotly/graph_objs/scatterpolargl/_line.py | 9 +- plotly/graph_objs/scatterpolargl/_marker.py | 61 +- plotly/graph_objs/scatterpolargl/_selected.py | 7 +- plotly/graph_objs/scatterpolargl/_stream.py | 7 +- plotly/graph_objs/scatterpolargl/_textfont.py | 39 +- .../graph_objs/scatterpolargl/_unselected.py | 7 +- .../scatterpolargl/hoverlabel/_font.py | 57 +- .../scatterpolargl/legendgrouptitle/_font.py | 21 +- .../scatterpolargl/marker/_colorbar.py | 105 +- .../graph_objs/scatterpolargl/marker/_line.py | 31 +- .../marker/colorbar/_tickfont.py | 21 +- .../marker/colorbar/_tickformatstop.py | 13 +- .../scatterpolargl/marker/colorbar/_title.py | 9 +- .../marker/colorbar/title/_font.py | 21 +- .../scatterpolargl/selected/_marker.py | 9 +- .../scatterpolargl/selected/_textfont.py | 5 +- .../scatterpolargl/unselected/_marker.py | 9 +- .../scatterpolargl/unselected/_textfont.py | 5 +- plotly/graph_objs/scattersmith/_hoverlabel.py | 29 +- .../scattersmith/_legendgrouptitle.py | 7 +- plotly/graph_objs/scattersmith/_line.py | 19 +- plotly/graph_objs/scattersmith/_marker.py | 73 +- plotly/graph_objs/scattersmith/_selected.py | 7 +- plotly/graph_objs/scattersmith/_stream.py | 7 +- plotly/graph_objs/scattersmith/_textfont.py | 57 +- plotly/graph_objs/scattersmith/_unselected.py | 7 +- .../scattersmith/hoverlabel/_font.py | 57 +- .../scattersmith/legendgrouptitle/_font.py | 21 +- .../scattersmith/marker/_colorbar.py | 105 +- .../scattersmith/marker/_gradient.py | 15 +- .../graph_objs/scattersmith/marker/_line.py | 31 +- .../scattersmith/marker/colorbar/_tickfont.py | 21 +- .../marker/colorbar/_tickformatstop.py | 13 +- .../scattersmith/marker/colorbar/_title.py | 9 +- .../marker/colorbar/title/_font.py | 21 +- .../scattersmith/selected/_marker.py | 9 +- .../scattersmith/selected/_textfont.py | 5 +- .../scattersmith/unselected/_marker.py | 9 +- .../scattersmith/unselected/_textfont.py | 5 +- .../graph_objs/scatterternary/_hoverlabel.py | 29 +- .../scatterternary/_legendgrouptitle.py | 7 +- plotly/graph_objs/scatterternary/_line.py | 19 +- plotly/graph_objs/scatterternary/_marker.py | 73 +- plotly/graph_objs/scatterternary/_selected.py | 7 +- plotly/graph_objs/scatterternary/_stream.py | 7 +- plotly/graph_objs/scatterternary/_textfont.py | 57 +- .../graph_objs/scatterternary/_unselected.py | 7 +- .../scatterternary/hoverlabel/_font.py | 57 +- .../scatterternary/legendgrouptitle/_font.py | 21 +- .../scatterternary/marker/_colorbar.py | 105 +- .../scatterternary/marker/_gradient.py | 15 +- .../graph_objs/scatterternary/marker/_line.py | 31 +- .../marker/colorbar/_tickfont.py | 21 +- .../marker/colorbar/_tickformatstop.py | 13 +- .../scatterternary/marker/colorbar/_title.py | 9 +- .../marker/colorbar/title/_font.py | 21 +- .../scatterternary/selected/_marker.py | 9 +- .../scatterternary/selected/_textfont.py | 5 +- .../scatterternary/unselected/_marker.py | 9 +- .../scatterternary/unselected/_textfont.py | 5 +- plotly/graph_objs/splom/_diagonal.py | 5 +- plotly/graph_objs/splom/_dimension.py | 19 +- plotly/graph_objs/splom/_hoverlabel.py | 29 +- plotly/graph_objs/splom/_legendgrouptitle.py | 7 +- plotly/graph_objs/splom/_marker.py | 61 +- plotly/graph_objs/splom/_selected.py | 5 +- plotly/graph_objs/splom/_stream.py | 7 +- plotly/graph_objs/splom/_unselected.py | 5 +- plotly/graph_objs/splom/dimension/_axis.py | 7 +- plotly/graph_objs/splom/hoverlabel/_font.py | 57 +- .../splom/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/splom/marker/_colorbar.py | 105 +- plotly/graph_objs/splom/marker/_line.py | 31 +- .../splom/marker/colorbar/_tickfont.py | 21 +- .../splom/marker/colorbar/_tickformatstop.py | 13 +- .../splom/marker/colorbar/_title.py | 9 +- .../splom/marker/colorbar/title/_font.py | 21 +- plotly/graph_objs/splom/selected/_marker.py | 9 +- plotly/graph_objs/splom/unselected/_marker.py | 9 +- plotly/graph_objs/streamtube/_colorbar.py | 105 +- plotly/graph_objs/streamtube/_hoverlabel.py | 29 +- .../streamtube/_legendgrouptitle.py | 7 +- plotly/graph_objs/streamtube/_lighting.py | 17 +- .../graph_objs/streamtube/_lightposition.py | 9 +- plotly/graph_objs/streamtube/_starts.py | 21 +- plotly/graph_objs/streamtube/_stream.py | 7 +- .../streamtube/colorbar/_tickfont.py | 21 +- .../streamtube/colorbar/_tickformatstop.py | 13 +- .../graph_objs/streamtube/colorbar/_title.py | 9 +- .../streamtube/colorbar/title/_font.py | 21 +- .../graph_objs/streamtube/hoverlabel/_font.py | 57 +- .../streamtube/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/sunburst/_domain.py | 11 +- plotly/graph_objs/sunburst/_hoverlabel.py | 29 +- plotly/graph_objs/sunburst/_insidetextfont.py | 57 +- plotly/graph_objs/sunburst/_leaf.py | 5 +- .../graph_objs/sunburst/_legendgrouptitle.py | 7 +- plotly/graph_objs/sunburst/_marker.py | 33 +- .../graph_objs/sunburst/_outsidetextfont.py | 57 +- plotly/graph_objs/sunburst/_root.py | 5 +- plotly/graph_objs/sunburst/_stream.py | 7 +- plotly/graph_objs/sunburst/_textfont.py | 57 +- .../graph_objs/sunburst/hoverlabel/_font.py | 57 +- .../sunburst/legendgrouptitle/_font.py | 21 +- .../graph_objs/sunburst/marker/_colorbar.py | 105 +- plotly/graph_objs/sunburst/marker/_line.py | 15 +- plotly/graph_objs/sunburst/marker/_pattern.py | 37 +- .../sunburst/marker/colorbar/_tickfont.py | 21 +- .../marker/colorbar/_tickformatstop.py | 13 +- .../sunburst/marker/colorbar/_title.py | 9 +- .../sunburst/marker/colorbar/title/_font.py | 21 +- plotly/graph_objs/surface/_colorbar.py | 105 +- plotly/graph_objs/surface/_contours.py | 9 +- plotly/graph_objs/surface/_hoverlabel.py | 29 +- .../graph_objs/surface/_legendgrouptitle.py | 7 +- plotly/graph_objs/surface/_lighting.py | 13 +- plotly/graph_objs/surface/_lightposition.py | 9 +- plotly/graph_objs/surface/_stream.py | 7 +- .../graph_objs/surface/colorbar/_tickfont.py | 21 +- .../surface/colorbar/_tickformatstop.py | 13 +- plotly/graph_objs/surface/colorbar/_title.py | 9 +- .../surface/colorbar/title/_font.py | 21 +- plotly/graph_objs/surface/contours/_x.py | 25 +- plotly/graph_objs/surface/contours/_y.py | 25 +- plotly/graph_objs/surface/contours/_z.py | 25 +- .../graph_objs/surface/contours/x/_project.py | 9 +- .../graph_objs/surface/contours/y/_project.py | 9 +- .../graph_objs/surface/contours/z/_project.py | 9 +- plotly/graph_objs/surface/hoverlabel/_font.py | 57 +- .../surface/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/table/_cells.py | 41 +- plotly/graph_objs/table/_domain.py | 11 +- plotly/graph_objs/table/_header.py | 41 +- plotly/graph_objs/table/_hoverlabel.py | 29 +- plotly/graph_objs/table/_legendgrouptitle.py | 7 +- plotly/graph_objs/table/_stream.py | 7 +- plotly/graph_objs/table/cells/_fill.py | 9 +- plotly/graph_objs/table/cells/_font.py | 57 +- plotly/graph_objs/table/cells/_line.py | 15 +- plotly/graph_objs/table/header/_fill.py | 9 +- plotly/graph_objs/table/header/_font.py | 57 +- plotly/graph_objs/table/header/_line.py | 15 +- plotly/graph_objs/table/hoverlabel/_font.py | 57 +- .../table/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/treemap/_domain.py | 11 +- plotly/graph_objs/treemap/_hoverlabel.py | 29 +- plotly/graph_objs/treemap/_insidetextfont.py | 57 +- .../graph_objs/treemap/_legendgrouptitle.py | 7 +- plotly/graph_objs/treemap/_marker.py | 39 +- plotly/graph_objs/treemap/_outsidetextfont.py | 57 +- plotly/graph_objs/treemap/_pathbar.py | 13 +- plotly/graph_objs/treemap/_root.py | 5 +- plotly/graph_objs/treemap/_stream.py | 7 +- plotly/graph_objs/treemap/_textfont.py | 57 +- plotly/graph_objs/treemap/_tiling.py | 11 +- plotly/graph_objs/treemap/hoverlabel/_font.py | 57 +- .../treemap/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/treemap/marker/_colorbar.py | 105 +- plotly/graph_objs/treemap/marker/_line.py | 15 +- plotly/graph_objs/treemap/marker/_pad.py | 11 +- plotly/graph_objs/treemap/marker/_pattern.py | 37 +- .../treemap/marker/colorbar/_tickfont.py | 21 +- .../marker/colorbar/_tickformatstop.py | 13 +- .../treemap/marker/colorbar/_title.py | 9 +- .../treemap/marker/colorbar/title/_font.py | 21 +- .../graph_objs/treemap/pathbar/_textfont.py | 57 +- plotly/graph_objs/violin/_box.py | 11 +- plotly/graph_objs/violin/_hoverlabel.py | 29 +- plotly/graph_objs/violin/_legendgrouptitle.py | 7 +- plotly/graph_objs/violin/_line.py | 7 +- plotly/graph_objs/violin/_marker.py | 17 +- plotly/graph_objs/violin/_meanline.py | 9 +- plotly/graph_objs/violin/_selected.py | 5 +- plotly/graph_objs/violin/_stream.py | 7 +- plotly/graph_objs/violin/_unselected.py | 5 +- plotly/graph_objs/violin/box/_line.py | 7 +- plotly/graph_objs/violin/hoverlabel/_font.py | 57 +- .../violin/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/violin/marker/_line.py | 11 +- plotly/graph_objs/violin/selected/_marker.py | 9 +- .../graph_objs/violin/unselected/_marker.py | 9 +- plotly/graph_objs/volume/_caps.py | 9 +- plotly/graph_objs/volume/_colorbar.py | 105 +- plotly/graph_objs/volume/_contour.py | 9 +- plotly/graph_objs/volume/_hoverlabel.py | 29 +- plotly/graph_objs/volume/_legendgrouptitle.py | 7 +- plotly/graph_objs/volume/_lighting.py | 17 +- plotly/graph_objs/volume/_lightposition.py | 9 +- plotly/graph_objs/volume/_slices.py | 9 +- plotly/graph_objs/volume/_spaceframe.py | 7 +- plotly/graph_objs/volume/_stream.py | 7 +- plotly/graph_objs/volume/_surface.py | 11 +- plotly/graph_objs/volume/caps/_x.py | 7 +- plotly/graph_objs/volume/caps/_y.py | 7 +- plotly/graph_objs/volume/caps/_z.py | 7 +- .../graph_objs/volume/colorbar/_tickfont.py | 21 +- .../volume/colorbar/_tickformatstop.py | 13 +- plotly/graph_objs/volume/colorbar/_title.py | 9 +- .../graph_objs/volume/colorbar/title/_font.py | 21 +- plotly/graph_objs/volume/hoverlabel/_font.py | 57 +- .../volume/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/volume/slices/_x.py | 13 +- plotly/graph_objs/volume/slices/_y.py | 13 +- plotly/graph_objs/volume/slices/_z.py | 13 +- plotly/graph_objs/waterfall/_connector.py | 9 +- plotly/graph_objs/waterfall/_decreasing.py | 5 +- plotly/graph_objs/waterfall/_hoverlabel.py | 29 +- plotly/graph_objs/waterfall/_increasing.py | 5 +- .../graph_objs/waterfall/_insidetextfont.py | 57 +- .../graph_objs/waterfall/_legendgrouptitle.py | 7 +- .../graph_objs/waterfall/_outsidetextfont.py | 57 +- plotly/graph_objs/waterfall/_stream.py | 7 +- plotly/graph_objs/waterfall/_textfont.py | 57 +- plotly/graph_objs/waterfall/_totals.py | 5 +- .../graph_objs/waterfall/connector/_line.py | 9 +- .../waterfall/decreasing/_marker.py | 7 +- .../waterfall/decreasing/marker/_line.py | 7 +- .../graph_objs/waterfall/hoverlabel/_font.py | 57 +- .../waterfall/increasing/_marker.py | 7 +- .../waterfall/increasing/marker/_line.py | 7 +- .../waterfall/legendgrouptitle/_font.py | 21 +- plotly/graph_objs/waterfall/totals/_marker.py | 7 +- .../waterfall/totals/marker/_line.py | 7 +- 1064 files changed, 22600 insertions(+), 19407 deletions(-) diff --git a/codegen/datatypes.py b/codegen/datatypes.py index 314e05c629..8a23dfa6b0 100644 --- a/codegen/datatypes.py +++ b/codegen/datatypes.py @@ -12,7 +12,7 @@ ] -def get_typing_type(plotly_type, array_ok=False): +def get_python_type(plotly_type, array_ok=False, compound_as_none=False): """ Get Python type corresponding to a valType string from the plotly schema @@ -28,7 +28,7 @@ def get_typing_type(plotly_type, array_ok=False): Python type string """ if plotly_type == "data_array": - pytype = "numpy.ndarray" + pytype = "NDArray" elif plotly_type == "info_array": pytype = "list" elif plotly_type == "colorlist": @@ -43,11 +43,13 @@ def get_typing_type(plotly_type, array_ok=False): pytype = "int" elif plotly_type == "boolean": pytype = "bool" + elif (plotly_type in ("compound", "compound_array")) and compound_as_none: + pytype = None else: raise ValueError("Unknown plotly type: %s" % plotly_type) if array_ok: - return f"{pytype}|numpy.ndarray" + return f"{pytype}|NDArray" else: return pytype @@ -96,11 +98,14 @@ def build_datatype_py(node): # Imports # ------- + buffer.write("from __future__ import annotations\n") + buffer.write("from typing import Any\n") + buffer.write("from numpy.typing import NDArray\n") buffer.write( - f"from plotly.basedatatypes " + "from plotly.basedatatypes " f"import {node.name_base_datatype} as _{node.name_base_datatype}\n" ) - buffer.write(f"import copy as _copy\n") + buffer.write("import copy as _copy\n") if node.name_property in deprecated_mapbox_traces: buffer.write(f"from warnings import warn\n") @@ -127,7 +132,7 @@ class {datatype_class}(_{node.name_base_datatype}):\n""" import re _subplotid_prop_re = re.compile( - '^(' + '|'.join(_subplotid_prop_names) + r')(\\d+)$') + '^(' + '|'.join(_subplotid_prop_names) + r')(\d+)$') """ ) @@ -197,7 +202,7 @@ def _subplot_re_match(self, prop): elif subtype_node.is_mapped: prop_type = "" else: - prop_type = get_typing_type(subtype_node.datatype, subtype_node.is_array_ok) + prop_type = get_python_type(subtype_node.datatype, array_ok=subtype_node.is_array_ok) # #### Get property description #### raw_description = subtype_node.description @@ -474,10 +479,11 @@ def add_constructor_params( {extra}=None""" ) - for i, subtype_node in enumerate(subtype_nodes): + for subtype_node in subtype_nodes: + py_type = get_python_type(subtype_node.datatype, compound_as_none=True) buffer.write( f""", - {subtype_node.name_property}=None""" + {subtype_node.name_property}: {py_type}|None = None""" ) for extra in append_extras: diff --git a/codegen/figure.py b/codegen/figure.py index dd013830b8..8e875f3d7e 100644 --- a/codegen/figure.py +++ b/codegen/figure.py @@ -61,8 +61,9 @@ def build_figure_py( trace_nodes = trace_node.child_compound_datatypes # Write imports - # ------------- - # ### Import base class ### + buffer.write("from __future__ import annotations\n") + buffer.write("from typing import Any\n") + buffer.write("from numpy.typing import NDArray\n") buffer.write(f"from plotly.{base_package} import {base_classname}\n") # Write class definition @@ -82,7 +83,7 @@ class {fig_classname}({base_classname}):\n""" buffer.write( f""" def __init__(self, data=None, layout=None, - frames=None, skip_invalid=False, **kwargs): + frames=None, skip_invalid: bool = False, **kwargs): \"\"\" Create a new :class:{fig_classname} instance diff --git a/plotly/graph_objs/_bar.py b/plotly/graph_objs/_bar.py index da96f8476a..770aa19986 100644 --- a/plotly/graph_objs/_bar.py +++ b/plotly/graph_objs/_bar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -48,7 +51,7 @@ def base(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['base'] @@ -136,7 +139,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -265,7 +268,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -353,7 +356,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -400,7 +403,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -443,7 +446,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -674,7 +677,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -739,7 +742,7 @@ def offset(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['offset'] @@ -961,7 +964,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1038,7 +1041,7 @@ def textposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textposition'] @@ -1114,7 +1117,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1255,7 +1258,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -1295,7 +1298,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1503,7 +1506,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -2107,80 +2110,80 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - alignmentgroup=None, - base=None, - basesrc=None, - cliponaxis=None, - constraintext=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - error_x=None, - error_y=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, - insidetextfont=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetgroup=None, - offsetsrc=None, - opacity=None, - orientation=None, - outsidetextfont=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textangle=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - width=None, - widthsrc=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + base: Any|None = None, + basesrc: str|None = None, + cliponaxis: bool|None = None, + constraintext: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + error_x: None|None = None, + error_y: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextanchor: Any|None = None, + insidetextfont: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + offset: int|float|None = None, + offsetgroup: str|None = None, + offsetsrc: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + outsidetextfont: None|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textangle: int|float|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + width: int|float|None = None, + widthsrc: str|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + zorder: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_barpolar.py b/plotly/graph_objs/_barpolar.py index 28c2580b6e..db51d4997e 100644 --- a/plotly/graph_objs/_barpolar.py +++ b/plotly/graph_objs/_barpolar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -25,7 +28,7 @@ def base(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['base'] @@ -68,7 +71,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -157,7 +160,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -243,7 +246,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -286,7 +289,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -329,7 +332,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -515,7 +518,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -579,7 +582,7 @@ def offset(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['offset'] @@ -639,7 +642,7 @@ def r(self): Returns ------- - numpy.ndarray + NDArray """ return self['r'] @@ -817,7 +820,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -857,7 +860,7 @@ def theta(self): Returns ------- - numpy.ndarray + NDArray """ return self['theta'] @@ -1040,7 +1043,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -1299,53 +1302,53 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - base=None, - basesrc=None, - customdata=None, - customdatasrc=None, - dr=None, - dtheta=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetsrc=None, - opacity=None, - r=None, - r0=None, - rsrc=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textsrc=None, - theta=None, - theta0=None, - thetasrc=None, - thetaunit=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - width=None, - widthsrc=None, + base: Any|None = None, + basesrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dr: int|float|None = None, + dtheta: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + offset: int|float|None = None, + offsetsrc: str|None = None, + opacity: int|float|None = None, + r: NDArray|None = None, + r0: Any|None = None, + rsrc: str|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textsrc: str|None = None, + theta: NDArray|None = None, + theta0: Any|None = None, + thetasrc: str|None = None, + thetaunit: Any|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_box.py b/plotly/graph_objs/_box.py index 11e16d36ef..24d026137f 100644 --- a/plotly/graph_objs/_box.py +++ b/plotly/graph_objs/_box.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -103,7 +106,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -218,7 +221,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -327,7 +330,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -370,7 +373,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -413,7 +416,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -618,7 +621,7 @@ def lowerfence(self): Returns ------- - numpy.ndarray + NDArray """ return self['lowerfence'] @@ -684,7 +687,7 @@ def mean(self): Returns ------- - numpy.ndarray + NDArray """ return self['mean'] @@ -725,7 +728,7 @@ def median(self): Returns ------- - numpy.ndarray + NDArray """ return self['median'] @@ -773,7 +776,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -870,7 +873,7 @@ def notchspan(self): Returns ------- - numpy.ndarray + NDArray """ return self['notchspan'] @@ -1022,7 +1025,7 @@ def q1(self): Returns ------- - numpy.ndarray + NDArray """ return self['q1'] @@ -1063,7 +1066,7 @@ def q3(self): Returns ------- - numpy.ndarray + NDArray """ return self['q3'] @@ -1139,7 +1142,7 @@ def sd(self): Returns ------- - numpy.ndarray + NDArray """ return self['sd'] @@ -1340,7 +1343,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1460,7 +1463,7 @@ def upperfence(self): Returns ------- - numpy.ndarray + NDArray """ return self['upperfence'] @@ -1568,7 +1571,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1777,7 +1780,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -2454,92 +2457,92 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - alignmentgroup=None, - boxmean=None, - boxpoints=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - jitter=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - lowerfence=None, - lowerfencesrc=None, - marker=None, - mean=None, - meansrc=None, - median=None, - mediansrc=None, - meta=None, - metasrc=None, - name=None, - notched=None, - notchspan=None, - notchspansrc=None, - notchwidth=None, - offsetgroup=None, - opacity=None, - orientation=None, - pointpos=None, - q1=None, - q1src=None, - q3=None, - q3src=None, - quartilemethod=None, - sd=None, - sdmultiple=None, - sdsrc=None, - selected=None, - selectedpoints=None, - showlegend=None, - showwhiskers=None, - sizemode=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - upperfence=None, - upperfencesrc=None, - visible=None, - whiskerwidth=None, - width=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + boxmean: Any|None = None, + boxpoints: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + jitter: int|float|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + lowerfence: NDArray|None = None, + lowerfencesrc: str|None = None, + marker: None|None = None, + mean: NDArray|None = None, + meansrc: str|None = None, + median: NDArray|None = None, + mediansrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + notched: bool|None = None, + notchspan: NDArray|None = None, + notchspansrc: str|None = None, + notchwidth: int|float|None = None, + offsetgroup: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + pointpos: int|float|None = None, + q1: NDArray|None = None, + q1src: str|None = None, + q3: NDArray|None = None, + q3src: str|None = None, + quartilemethod: Any|None = None, + sd: NDArray|None = None, + sdmultiple: int|float|None = None, + sdsrc: str|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + showwhiskers: bool|None = None, + sizemode: Any|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + upperfence: NDArray|None = None, + upperfencesrc: str|None = None, + visible: Any|None = None, + whiskerwidth: int|float|None = None, + width: int|float|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + zorder: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_candlestick.py b/plotly/graph_objs/_candlestick.py index 72c5ae0432..1c7f37469a 100644 --- a/plotly/graph_objs/_candlestick.py +++ b/plotly/graph_objs/_candlestick.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -24,7 +27,7 @@ def close(self): Returns ------- - numpy.ndarray + NDArray """ return self['close'] @@ -67,7 +70,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -129,7 +132,7 @@ def high(self): Returns ------- - numpy.ndarray + NDArray """ return self['high'] @@ -175,7 +178,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -239,7 +242,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -282,7 +285,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -481,7 +484,7 @@ def low(self): Returns ------- - numpy.ndarray + NDArray """ return self['low'] @@ -529,7 +532,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -611,7 +614,7 @@ def open(self): Returns ------- - numpy.ndarray + NDArray """ return self['open'] @@ -722,7 +725,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -862,7 +865,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1354,55 +1357,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - close=None, - closesrc=None, - customdata=None, - customdatasrc=None, - decreasing=None, - high=None, - highsrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - increasing=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - low=None, - lowsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - open=None, - opensrc=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - visible=None, - whiskerwidth=None, - x=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - yaxis=None, - yhoverformat=None, - zorder=None, + close: NDArray|None = None, + closesrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + decreasing: None|None = None, + high: NDArray|None = None, + highsrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + increasing: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + low: NDArray|None = None, + lowsrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + open: NDArray|None = None, + opensrc: str|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + whiskerwidth: int|float|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + yaxis: str|None = None, + yhoverformat: str|None = None, + zorder: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_carpet.py b/plotly/graph_objs/_carpet.py index 62f0dad7af..323477bb2a 100644 --- a/plotly/graph_objs/_carpet.py +++ b/plotly/graph_objs/_carpet.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -24,7 +27,7 @@ def a(self): Returns ------- - numpy.ndarray + NDArray """ return self['a'] @@ -107,7 +110,7 @@ def b(self): Returns ------- - numpy.ndarray + NDArray """ return self['b'] @@ -264,7 +267,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -370,7 +373,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -512,7 +515,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -695,7 +698,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -760,7 +763,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -1011,43 +1014,43 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - a=None, - a0=None, - aaxis=None, - asrc=None, - b=None, - b0=None, - baxis=None, - bsrc=None, - carpet=None, - cheaterslope=None, - color=None, - customdata=None, - customdatasrc=None, - da=None, - db=None, - font=None, - ids=None, - idssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - stream=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xsrc=None, - y=None, - yaxis=None, - ysrc=None, - zorder=None, + a: NDArray|None = None, + a0: int|float|None = None, + aaxis: None|None = None, + asrc: str|None = None, + b: NDArray|None = None, + b0: int|float|None = None, + baxis: None|None = None, + bsrc: str|None = None, + carpet: str|None = None, + cheaterslope: int|float|None = None, + color: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + da: int|float|None = None, + db: int|float|None = None, + font: None|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + stream: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yaxis: str|None = None, + ysrc: str|None = None, + zorder: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_choropleth.py b/plotly/graph_objs/_choropleth.py index aabe66d14e..62b4bf6cc3 100644 --- a/plotly/graph_objs/_choropleth.py +++ b/plotly/graph_objs/_choropleth.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -153,7 +156,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -272,7 +275,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -358,7 +361,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -401,7 +404,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -444,7 +447,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -627,7 +630,7 @@ def locations(self): Returns ------- - numpy.ndarray + NDArray """ return self['locations'] @@ -697,7 +700,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -891,7 +894,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1030,7 +1033,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -1411,54 +1414,54 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geo=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locationmode=None, - locations=None, - locationssrc=None, - marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, - selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autocolorscale: bool|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + featureidkey: str|None = None, + geo: str|None = None, + geojson: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + locationmode: Any|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + reversescale: bool|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_choroplethmap.py b/plotly/graph_objs/_choroplethmap.py index 89d7aebab2..9ea190e0f4 100644 --- a/plotly/graph_objs/_choroplethmap.py +++ b/plotly/graph_objs/_choroplethmap.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -177,7 +180,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -269,7 +272,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -356,7 +359,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -399,7 +402,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -442,7 +445,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -600,7 +603,7 @@ def locations(self): Returns ------- - numpy.ndarray + NDArray """ return self['locations'] @@ -670,7 +673,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -889,7 +892,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1028,7 +1031,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -1407,54 +1410,54 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - below=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locations=None, - locationssrc=None, - marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, - selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, - stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autocolorscale: bool|None = None, + below: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + featureidkey: str|None = None, + geojson: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + reversescale: bool|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_choroplethmapbox.py b/plotly/graph_objs/_choroplethmapbox.py index 2f652c88fc..6591f84b18 100644 --- a/plotly/graph_objs/_choroplethmapbox.py +++ b/plotly/graph_objs/_choroplethmapbox.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy from warnings import warn @@ -178,7 +181,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -270,7 +273,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -357,7 +360,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -400,7 +403,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -443,7 +446,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -601,7 +604,7 @@ def locations(self): Returns ------- - numpy.ndarray + NDArray """ return self['locations'] @@ -671,7 +674,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -894,7 +897,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1033,7 +1036,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -1417,54 +1420,54 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - below=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locations=None, - locationssrc=None, - marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, - selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, - stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autocolorscale: bool|None = None, + below: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + featureidkey: str|None = None, + geojson: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + reversescale: bool|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_cone.py b/plotly/graph_objs/_cone.py index f83bdf76f8..e35987fd37 100644 --- a/plotly/graph_objs/_cone.py +++ b/plotly/graph_objs/_cone.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -266,7 +269,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -313,7 +316,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -400,7 +403,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -443,7 +446,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -486,7 +489,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -693,7 +696,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -949,7 +952,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -989,7 +992,7 @@ def u(self): Returns ------- - numpy.ndarray + NDArray """ return self['u'] @@ -1109,7 +1112,7 @@ def v(self): Returns ------- - numpy.ndarray + NDArray """ return self['v'] @@ -1197,7 +1200,7 @@ def w(self): Returns ------- - numpy.ndarray + NDArray """ return self['w'] @@ -1263,7 +1266,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1335,7 +1338,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -1407,7 +1410,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -1817,67 +1820,67 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - anchor=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - sizemode=None, - sizeref=None, - stream=None, - text=None, - textsrc=None, - u=None, - uhoverformat=None, - uid=None, - uirevision=None, - usrc=None, - v=None, - vhoverformat=None, - visible=None, - vsrc=None, - w=None, - whoverformat=None, - wsrc=None, - x=None, - xhoverformat=None, - xsrc=None, - y=None, - yhoverformat=None, - ysrc=None, - z=None, - zhoverformat=None, - zsrc=None, + anchor: Any|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + sizemode: Any|None = None, + sizeref: int|float|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + u: NDArray|None = None, + uhoverformat: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + usrc: str|None = None, + v: NDArray|None = None, + vhoverformat: str|None = None, + visible: Any|None = None, + vsrc: str|None = None, + w: NDArray|None = None, + whoverformat: str|None = None, + wsrc: str|None = None, + x: NDArray|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_contour.py b/plotly/graph_objs/_contour.py index 6ccd38143f..e58426f981 100644 --- a/plotly/graph_objs/_contour.py +++ b/plotly/graph_objs/_contour.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -219,7 +222,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -334,7 +337,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -441,7 +444,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -482,7 +485,7 @@ def hovertext(self): Returns ------- - numpy.ndarray + NDArray """ return self['hovertext'] @@ -525,7 +528,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -711,7 +714,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -902,7 +905,7 @@ def text(self): Returns ------- - numpy.ndarray + NDArray """ return self['text'] @@ -1099,7 +1102,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1331,7 +1334,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -1563,7 +1566,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -2117,79 +2120,79 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - autocontour=None, - coloraxis=None, - colorbar=None, - colorscale=None, - connectgaps=None, - contours=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoverongaps=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - meta=None, - metasrc=None, - name=None, - ncontours=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - text=None, - textfont=None, - textsrc=None, - texttemplate=None, - transpose=None, - uid=None, - uirevision=None, - visible=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - xtype=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - ytype=None, - z=None, - zauto=None, - zhoverformat=None, - zmax=None, - zmid=None, - zmin=None, - zorder=None, - zsrc=None, + autocolorscale: bool|None = None, + autocontour: bool|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + connectgaps: bool|None = None, + contours: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoverongaps: bool|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: NDArray|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + ncontours: int|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + transpose: bool|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + xtype: Any|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + ytype: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zhoverformat: str|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zorder: int|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_contourcarpet.py b/plotly/graph_objs/_contourcarpet.py index c3e132abe5..715f402392 100644 --- a/plotly/graph_objs/_contourcarpet.py +++ b/plotly/graph_objs/_contourcarpet.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -24,7 +27,7 @@ def a(self): Returns ------- - numpy.ndarray + NDArray """ return self['a'] @@ -157,7 +160,7 @@ def b(self): Returns ------- - numpy.ndarray + NDArray """ return self['b'] @@ -389,7 +392,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -498,7 +501,7 @@ def hovertext(self): Returns ------- - numpy.ndarray + NDArray """ return self['hovertext'] @@ -541,7 +544,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -727,7 +730,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -918,7 +921,7 @@ def text(self): Returns ------- - numpy.ndarray + NDArray """ return self['text'] @@ -1106,7 +1109,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -1498,60 +1501,60 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - a=None, - a0=None, - asrc=None, - atype=None, - autocolorscale=None, - autocontour=None, - b=None, - b0=None, - bsrc=None, - btype=None, - carpet=None, - coloraxis=None, - colorbar=None, - colorscale=None, - contours=None, - customdata=None, - customdatasrc=None, - da=None, - db=None, - fillcolor=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - meta=None, - metasrc=None, - name=None, - ncontours=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - text=None, - textsrc=None, - transpose=None, - uid=None, - uirevision=None, - visible=None, - xaxis=None, - yaxis=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zorder=None, - zsrc=None, + a: NDArray|None = None, + a0: Any|None = None, + asrc: str|None = None, + atype: Any|None = None, + autocolorscale: bool|None = None, + autocontour: bool|None = None, + b: NDArray|None = None, + b0: Any|None = None, + bsrc: str|None = None, + btype: Any|None = None, + carpet: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + contours: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + da: int|float|None = None, + db: int|float|None = None, + fillcolor: str|None = None, + hovertext: NDArray|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + ncontours: int|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textsrc: str|None = None, + transpose: bool|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + xaxis: str|None = None, + yaxis: str|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zorder: int|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_densitymap.py b/plotly/graph_objs/_densitymap.py index dde48ab8ab..c6cbc5941c 100644 --- a/plotly/graph_objs/_densitymap.py +++ b/plotly/graph_objs/_densitymap.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -177,7 +180,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -224,7 +227,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -310,7 +313,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -357,7 +360,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -400,7 +403,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -440,7 +443,7 @@ def lat(self): Returns ------- - numpy.ndarray + NDArray """ return self['lat'] @@ -597,7 +600,7 @@ def lon(self): Returns ------- - numpy.ndarray + NDArray """ return self['lon'] @@ -645,7 +648,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -730,7 +733,7 @@ def radius(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['radius'] @@ -887,7 +890,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1006,7 +1009,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -1383,53 +1386,53 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - below=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lon=None, - lonsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - radius=None, - radiussrc=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autocolorscale: bool|None = None, + below: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + lat: NDArray|None = None, + latsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lon: NDArray|None = None, + lonsrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + radius: int|float|None = None, + radiussrc: str|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_densitymapbox.py b/plotly/graph_objs/_densitymapbox.py index 0a592515b6..d42a99a752 100644 --- a/plotly/graph_objs/_densitymapbox.py +++ b/plotly/graph_objs/_densitymapbox.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy from warnings import warn @@ -178,7 +181,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -225,7 +228,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -311,7 +314,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -358,7 +361,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -401,7 +404,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -441,7 +444,7 @@ def lat(self): Returns ------- - numpy.ndarray + NDArray """ return self['lat'] @@ -598,7 +601,7 @@ def lon(self): Returns ------- - numpy.ndarray + NDArray """ return self['lon'] @@ -646,7 +649,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -731,7 +734,7 @@ def radius(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['radius'] @@ -892,7 +895,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1011,7 +1014,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -1393,53 +1396,53 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - below=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lon=None, - lonsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - radius=None, - radiussrc=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autocolorscale: bool|None = None, + below: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + lat: NDArray|None = None, + latsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lon: NDArray|None = None, + lonsrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + radius: int|float|None = None, + radiussrc: str|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_figure.py b/plotly/graph_objs/_figure.py index 160b6513d6..55bc2e8849 100644 --- a/plotly/graph_objs/_figure.py +++ b/plotly/graph_objs/_figure.py @@ -1,10 +1,13 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseFigure class Figure(BaseFigure): def __init__(self, data=None, layout=None, - frames=None, skip_invalid=False, **kwargs): + frames=None, skip_invalid: bool = False, **kwargs): """ Create a new :class:Figure instance @@ -580,80 +583,80 @@ def set_subplots(self, rows=None, cols=None, **make_subplots_args) -> "Figure": return super().set_subplots(rows, cols, **make_subplots_args) def add_bar(self, - alignmentgroup=None, - base=None, - basesrc=None, - cliponaxis=None, - constraintext=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - error_x=None, - error_y=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, - insidetextfont=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetgroup=None, - offsetsrc=None, - opacity=None, - orientation=None, - outsidetextfont=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textangle=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - width=None, - widthsrc=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + base: Any|None = None, + basesrc: str|None = None, + cliponaxis: bool|None = None, + constraintext: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + error_x: None|None = None, + error_y: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextanchor: Any|None = None, + insidetextfont: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + offset: int|float|None = None, + offsetgroup: str|None = None, + offsetsrc: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + outsidetextfont: None|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textangle: int|float|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + width: int|float|None = None, + widthsrc: str|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -1147,53 +1150,53 @@ def add_bar(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_barpolar(self, - base=None, - basesrc=None, - customdata=None, - customdatasrc=None, - dr=None, - dtheta=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetsrc=None, - opacity=None, - r=None, - r0=None, - rsrc=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textsrc=None, - theta=None, - theta0=None, - thetasrc=None, - thetaunit=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - width=None, - widthsrc=None, + base: Any|None = None, + basesrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dr: int|float|None = None, + dtheta: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + offset: int|float|None = None, + offsetsrc: str|None = None, + opacity: int|float|None = None, + r: NDArray|None = None, + r0: Any|None = None, + rsrc: str|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textsrc: str|None = None, + theta: NDArray|None = None, + theta0: Any|None = None, + thetasrc: str|None = None, + thetaunit: Any|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + width: int|float|None = None, + widthsrc: str|None = None, row=None, col=None, **kwargs @@ -1492,92 +1495,92 @@ def add_barpolar(self, return self.add_trace( new_trace, row=row, col=col) def add_box(self, - alignmentgroup=None, - boxmean=None, - boxpoints=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - jitter=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - lowerfence=None, - lowerfencesrc=None, - marker=None, - mean=None, - meansrc=None, - median=None, - mediansrc=None, - meta=None, - metasrc=None, - name=None, - notched=None, - notchspan=None, - notchspansrc=None, - notchwidth=None, - offsetgroup=None, - opacity=None, - orientation=None, - pointpos=None, - q1=None, - q1src=None, - q3=None, - q3src=None, - quartilemethod=None, - sd=None, - sdmultiple=None, - sdsrc=None, - selected=None, - selectedpoints=None, - showlegend=None, - showwhiskers=None, - sizemode=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - upperfence=None, - upperfencesrc=None, - visible=None, - whiskerwidth=None, - width=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + boxmean: Any|None = None, + boxpoints: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + jitter: int|float|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + lowerfence: NDArray|None = None, + lowerfencesrc: str|None = None, + marker: None|None = None, + mean: NDArray|None = None, + meansrc: str|None = None, + median: NDArray|None = None, + mediansrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + notched: bool|None = None, + notchspan: NDArray|None = None, + notchspansrc: str|None = None, + notchwidth: int|float|None = None, + offsetgroup: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + pointpos: int|float|None = None, + q1: NDArray|None = None, + q1src: str|None = None, + q3: NDArray|None = None, + q3src: str|None = None, + quartilemethod: Any|None = None, + sd: NDArray|None = None, + sdmultiple: int|float|None = None, + sdsrc: str|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + showwhiskers: bool|None = None, + sizemode: Any|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + upperfence: NDArray|None = None, + upperfencesrc: str|None = None, + visible: Any|None = None, + whiskerwidth: int|float|None = None, + width: int|float|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -2176,55 +2179,55 @@ def add_box(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_candlestick(self, - close=None, - closesrc=None, - customdata=None, - customdatasrc=None, - decreasing=None, - high=None, - highsrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - increasing=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - low=None, - lowsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - open=None, - opensrc=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - visible=None, - whiskerwidth=None, - x=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - yaxis=None, - yhoverformat=None, - zorder=None, + close: NDArray|None = None, + closesrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + decreasing: None|None = None, + high: NDArray|None = None, + highsrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + increasing: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + low: NDArray|None = None, + lowsrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + open: NDArray|None = None, + opensrc: str|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + whiskerwidth: int|float|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + yaxis: str|None = None, + yhoverformat: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -2550,43 +2553,43 @@ def add_candlestick(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_carpet(self, - a=None, - a0=None, - aaxis=None, - asrc=None, - b=None, - b0=None, - baxis=None, - bsrc=None, - carpet=None, - cheaterslope=None, - color=None, - customdata=None, - customdatasrc=None, - da=None, - db=None, - font=None, - ids=None, - idssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - stream=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xsrc=None, - y=None, - yaxis=None, - ysrc=None, - zorder=None, + a: NDArray|None = None, + a0: int|float|None = None, + aaxis: None|None = None, + asrc: str|None = None, + b: NDArray|None = None, + b0: int|float|None = None, + baxis: None|None = None, + bsrc: str|None = None, + carpet: str|None = None, + cheaterslope: int|float|None = None, + color: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + da: int|float|None = None, + db: int|float|None = None, + font: None|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + stream: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yaxis: str|None = None, + ysrc: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -2835,54 +2838,54 @@ def add_carpet(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_choropleth(self, - autocolorscale=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geo=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locationmode=None, - locations=None, - locationssrc=None, - marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, - selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autocolorscale: bool|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + featureidkey: str|None = None, + geo: str|None = None, + geojson: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + locationmode: Any|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + reversescale: bool|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -3218,54 +3221,54 @@ def add_choropleth(self, return self.add_trace( new_trace, row=row, col=col) def add_choroplethmap(self, - autocolorscale=None, - below=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locations=None, - locationssrc=None, - marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, - selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, - stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autocolorscale: bool|None = None, + below: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + featureidkey: str|None = None, + geojson: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + reversescale: bool|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -3599,54 +3602,54 @@ def add_choroplethmap(self, return self.add_trace( new_trace, row=row, col=col) def add_choroplethmapbox(self, - autocolorscale=None, - below=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locations=None, - locationssrc=None, - marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, - selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, - stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autocolorscale: bool|None = None, + below: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + featureidkey: str|None = None, + geojson: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + reversescale: bool|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -3989,67 +3992,67 @@ def add_choroplethmapbox(self, return self.add_trace( new_trace, row=row, col=col) def add_cone(self, - anchor=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - sizemode=None, - sizeref=None, - stream=None, - text=None, - textsrc=None, - u=None, - uhoverformat=None, - uid=None, - uirevision=None, - usrc=None, - v=None, - vhoverformat=None, - visible=None, - vsrc=None, - w=None, - whoverformat=None, - wsrc=None, - x=None, - xhoverformat=None, - xsrc=None, - y=None, - yhoverformat=None, - ysrc=None, - z=None, - zhoverformat=None, - zsrc=None, + anchor: Any|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + sizemode: Any|None = None, + sizeref: int|float|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + u: NDArray|None = None, + uhoverformat: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + usrc: str|None = None, + v: NDArray|None = None, + vhoverformat: str|None = None, + visible: Any|None = None, + vsrc: str|None = None, + w: NDArray|None = None, + whoverformat: str|None = None, + wsrc: str|None = None, + x: NDArray|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -4484,79 +4487,79 @@ def add_cone(self, return self.add_trace( new_trace, row=row, col=col) def add_contour(self, - autocolorscale=None, - autocontour=None, - coloraxis=None, - colorbar=None, - colorscale=None, - connectgaps=None, - contours=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoverongaps=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - meta=None, - metasrc=None, - name=None, - ncontours=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - text=None, - textfont=None, - textsrc=None, - texttemplate=None, - transpose=None, - uid=None, - uirevision=None, - visible=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - xtype=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - ytype=None, - z=None, - zauto=None, - zhoverformat=None, - zmax=None, - zmid=None, - zmin=None, - zorder=None, - zsrc=None, + autocolorscale: bool|None = None, + autocontour: bool|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + connectgaps: bool|None = None, + contours: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoverongaps: bool|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: NDArray|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + ncontours: int|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + transpose: bool|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + xtype: Any|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + ytype: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zhoverformat: str|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zorder: int|None = None, + zsrc: str|None = None, row=None, col=None, secondary_y=None, @@ -5058,60 +5061,60 @@ def add_contour(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_contourcarpet(self, - a=None, - a0=None, - asrc=None, - atype=None, - autocolorscale=None, - autocontour=None, - b=None, - b0=None, - bsrc=None, - btype=None, - carpet=None, - coloraxis=None, - colorbar=None, - colorscale=None, - contours=None, - customdata=None, - customdatasrc=None, - da=None, - db=None, - fillcolor=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - meta=None, - metasrc=None, - name=None, - ncontours=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - text=None, - textsrc=None, - transpose=None, - uid=None, - uirevision=None, - visible=None, - xaxis=None, - yaxis=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zorder=None, - zsrc=None, + a: NDArray|None = None, + a0: Any|None = None, + asrc: str|None = None, + atype: Any|None = None, + autocolorscale: bool|None = None, + autocontour: bool|None = None, + b: NDArray|None = None, + b0: Any|None = None, + bsrc: str|None = None, + btype: Any|None = None, + carpet: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + contours: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + da: int|float|None = None, + db: int|float|None = None, + fillcolor: str|None = None, + hovertext: NDArray|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + ncontours: int|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textsrc: str|None = None, + transpose: bool|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + xaxis: str|None = None, + yaxis: str|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zorder: int|None = None, + zsrc: str|None = None, row=None, col=None, secondary_y=None, @@ -5453,53 +5456,53 @@ def add_contourcarpet(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_densitymap(self, - autocolorscale=None, - below=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lon=None, - lonsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - radius=None, - radiussrc=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autocolorscale: bool|None = None, + below: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + lat: NDArray|None = None, + latsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lon: NDArray|None = None, + lonsrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + radius: int|float|None = None, + radiussrc: str|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -5830,53 +5833,53 @@ def add_densitymap(self, return self.add_trace( new_trace, row=row, col=col) def add_densitymapbox(self, - autocolorscale=None, - below=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lon=None, - lonsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - radius=None, - radiussrc=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autocolorscale: bool|None = None, + below: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + lat: NDArray|None = None, + latsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lon: NDArray|None = None, + lonsrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + radius: int|float|None = None, + radiussrc: str|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -6216,72 +6219,72 @@ def add_densitymapbox(self, return self.add_trace( new_trace, row=row, col=col) def add_funnel(self, - alignmentgroup=None, - cliponaxis=None, - connector=None, - constraintext=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, - insidetextfont=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetgroup=None, - opacity=None, - orientation=None, - outsidetextfont=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textangle=None, - textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - visible=None, - width=None, - x=None, - x0=None, - xaxis=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + cliponaxis: bool|None = None, + connector: None|None = None, + constraintext: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextanchor: Any|None = None, + insidetextfont: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + offset: int|float|None = None, + offsetgroup: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + outsidetextfont: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textangle: int|float|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + width: int|float|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -6751,52 +6754,52 @@ def add_funnel(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_funnelarea(self, - aspectratio=None, - baseratio=None, - customdata=None, - customdatasrc=None, - dlabel=None, - domain=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextfont=None, - label0=None, - labels=None, - labelssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - scalegroup=None, - showlegend=None, - stream=None, - text=None, - textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - title=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + aspectratio: int|float|None = None, + baseratio: int|float|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dlabel: int|float|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextfont: None|None = None, + label0: int|float|None = None, + labels: NDArray|None = None, + labelssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + scalegroup: str|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + title: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -7111,77 +7114,77 @@ def add_funnelarea(self, return self.add_trace( new_trace, row=row, col=col) def add_heatmap(self, - autocolorscale=None, - coloraxis=None, - colorbar=None, - colorscale=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoverongaps=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - text=None, - textfont=None, - textsrc=None, - texttemplate=None, - transpose=None, - uid=None, - uirevision=None, - visible=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xgap=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - xtype=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - ygap=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - ytype=None, - z=None, - zauto=None, - zhoverformat=None, - zmax=None, - zmid=None, - zmin=None, - zorder=None, - zsmooth=None, - zsrc=None, + autocolorscale: bool|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoverongaps: bool|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: NDArray|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + transpose: bool|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xgap: int|float|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + xtype: Any|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + ygap: int|float|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + ytype: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zhoverformat: str|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zorder: int|None = None, + zsmooth: Any|None = None, + zsrc: str|None = None, row=None, col=None, secondary_y=None, @@ -7673,72 +7676,72 @@ def add_heatmap(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_histogram(self, - alignmentgroup=None, - autobinx=None, - autobiny=None, - bingroup=None, - cliponaxis=None, - constraintext=None, - cumulative=None, - customdata=None, - customdatasrc=None, - error_x=None, - error_y=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, - insidetextfont=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - nbinsx=None, - nbinsy=None, - offsetgroup=None, - opacity=None, - orientation=None, - outsidetextfont=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textangle=None, - textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - x=None, - xaxis=None, - xbins=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, - ybins=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + autobinx: bool|None = None, + autobiny: bool|None = None, + bingroup: str|None = None, + cliponaxis: bool|None = None, + constraintext: Any|None = None, + cumulative: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + error_x: None|None = None, + error_y: None|None = None, + histfunc: Any|None = None, + histnorm: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextanchor: Any|None = None, + insidetextfont: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + nbinsx: int|None = None, + nbinsy: int|None = None, + offsetgroup: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + outsidetextfont: None|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textangle: int|float|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xbins: None|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yaxis: str|None = None, + ybins: None|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -8213,69 +8216,69 @@ def add_histogram(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_histogram2d(self, - autobinx=None, - autobiny=None, - autocolorscale=None, - bingroup=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - nbinsx=None, - nbinsy=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - textfont=None, - texttemplate=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xbingroup=None, - xbins=None, - xcalendar=None, - xgap=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, - ybingroup=None, - ybins=None, - ycalendar=None, - ygap=None, - yhoverformat=None, - ysrc=None, - z=None, - zauto=None, - zhoverformat=None, - zmax=None, - zmid=None, - zmin=None, - zsmooth=None, - zsrc=None, + autobinx: bool|None = None, + autobiny: bool|None = None, + autocolorscale: bool|None = None, + bingroup: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + histfunc: Any|None = None, + histnorm: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + nbinsx: int|None = None, + nbinsy: int|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + textfont: None|None = None, + texttemplate: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xbingroup: str|None = None, + xbins: None|None = None, + xcalendar: Any|None = None, + xgap: int|float|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yaxis: str|None = None, + ybingroup: str|None = None, + ybins: None|None = None, + ycalendar: Any|None = None, + ygap: int|float|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zhoverformat: str|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsmooth: Any|None = None, + zsrc: str|None = None, row=None, col=None, secondary_y=None, @@ -8744,70 +8747,70 @@ def add_histogram2d(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_histogram2dcontour(self, - autobinx=None, - autobiny=None, - autocolorscale=None, - autocontour=None, - bingroup=None, - coloraxis=None, - colorbar=None, - colorscale=None, - contours=None, - customdata=None, - customdatasrc=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - name=None, - nbinsx=None, - nbinsy=None, - ncontours=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - textfont=None, - texttemplate=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xbingroup=None, - xbins=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, - ybingroup=None, - ybins=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - z=None, - zauto=None, - zhoverformat=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autobinx: bool|None = None, + autobiny: bool|None = None, + autocolorscale: bool|None = None, + autocontour: bool|None = None, + bingroup: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + contours: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + histfunc: Any|None = None, + histnorm: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + nbinsx: int|None = None, + nbinsy: int|None = None, + ncontours: int|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + textfont: None|None = None, + texttemplate: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xbingroup: str|None = None, + xbins: None|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yaxis: str|None = None, + ybingroup: str|None = None, + ybins: None|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zhoverformat: str|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, row=None, col=None, secondary_y=None, @@ -9290,55 +9293,55 @@ def add_histogram2dcontour(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_icicle(self, - branchvalues=None, - count=None, - customdata=None, - customdatasrc=None, - domain=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextfont=None, - labels=None, - labelssrc=None, - leaf=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, - marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - outsidetextfont=None, - parents=None, - parentssrc=None, - pathbar=None, - root=None, - sort=None, - stream=None, - text=None, - textfont=None, - textinfo=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - tiling=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + branchvalues: Any|None = None, + count: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextfont: None|None = None, + labels: NDArray|None = None, + labelssrc: str|None = None, + leaf: None|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + level: Any|None = None, + marker: None|None = None, + maxdepth: int|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + outsidetextfont: None|None = None, + parents: NDArray|None = None, + parentssrc: str|None = None, + pathbar: None|None = None, + root: None|None = None, + sort: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + tiling: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -9677,45 +9680,45 @@ def add_icicle(self, return self.add_trace( new_trace, row=row, col=col) def add_image(self, - colormodel=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - source=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - visible=None, - x0=None, - xaxis=None, - y0=None, - yaxis=None, - z=None, - zmax=None, - zmin=None, - zorder=None, - zsmooth=None, - zsrc=None, + colormodel: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: NDArray|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + source: str|None = None, + stream: None|None = None, + text: NDArray|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x0: Any|None = None, + xaxis: str|None = None, + y0: Any|None = None, + yaxis: str|None = None, + z: NDArray|None = None, + zmax: list|None = None, + zmin: list|None = None, + zorder: int|None = None, + zsmooth: Any|None = None, + zsrc: str|None = None, row=None, col=None, secondary_y=None, @@ -10015,29 +10018,29 @@ def add_image(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_indicator(self, - align=None, - customdata=None, - customdatasrc=None, - delta=None, - domain=None, - gauge=None, - ids=None, - idssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - mode=None, - name=None, - number=None, - stream=None, - title=None, - uid=None, - uirevision=None, - value=None, - visible=None, + align: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + delta: None|None = None, + domain: None|None = None, + gauge: None|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + number: None|None = None, + stream: None|None = None, + title: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + value: int|float|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -10213,66 +10216,66 @@ def add_indicator(self, return self.add_trace( new_trace, row=row, col=col) def add_isosurface(self, - autocolorscale=None, - caps=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colorscale=None, - contour=None, - customdata=None, - customdatasrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - isomax=None, - isomin=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - slices=None, - spaceframe=None, - stream=None, - surface=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - value=None, - valuehoverformat=None, - valuesrc=None, - visible=None, - x=None, - xhoverformat=None, - xsrc=None, - y=None, - yhoverformat=None, - ysrc=None, - z=None, - zhoverformat=None, - zsrc=None, + autocolorscale: bool|None = None, + caps: None|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + contour: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + flatshading: bool|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + isomax: int|float|None = None, + isomin: int|float|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + slices: None|None = None, + spaceframe: None|None = None, + stream: None|None = None, + surface: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + value: NDArray|None = None, + valuehoverformat: str|None = None, + valuesrc: str|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -10682,76 +10685,76 @@ def add_isosurface(self, return self.add_trace( new_trace, row=row, col=col) def add_mesh3d(self, - alphahull=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - contour=None, - customdata=None, - customdatasrc=None, - delaunayaxis=None, - facecolor=None, - facecolorsrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - i=None, - ids=None, - idssrc=None, - intensity=None, - intensitymode=None, - intensitysrc=None, - isrc=None, - j=None, - jsrc=None, - k=None, - ksrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - vertexcolor=None, - vertexcolorsrc=None, - visible=None, - x=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - z=None, - zcalendar=None, - zhoverformat=None, - zsrc=None, + alphahull: int|float|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + contour: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + delaunayaxis: Any|None = None, + facecolor: NDArray|None = None, + facecolorsrc: str|None = None, + flatshading: bool|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + i: NDArray|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + intensity: NDArray|None = None, + intensitymode: Any|None = None, + intensitysrc: str|None = None, + isrc: str|None = None, + j: NDArray|None = None, + jsrc: str|None = None, + k: NDArray|None = None, + ksrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + vertexcolor: NDArray|None = None, + vertexcolorsrc: str|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zcalendar: Any|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -11241,55 +11244,55 @@ def add_mesh3d(self, return self.add_trace( new_trace, row=row, col=col) def add_ohlc(self, - close=None, - closesrc=None, - customdata=None, - customdatasrc=None, - decreasing=None, - high=None, - highsrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - increasing=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - low=None, - lowsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - open=None, - opensrc=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textsrc=None, - tickwidth=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - yaxis=None, - yhoverformat=None, - zorder=None, + close: NDArray|None = None, + closesrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + decreasing: None|None = None, + high: NDArray|None = None, + highsrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + increasing: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + low: NDArray|None = None, + lowsrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + open: NDArray|None = None, + opensrc: str|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + tickwidth: int|float|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + yaxis: str|None = None, + yhoverformat: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -11614,29 +11617,29 @@ def add_ohlc(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_parcats(self, - arrangement=None, - bundlecolors=None, - counts=None, - countssrc=None, - dimensions=None, - dimensiondefaults=None, - domain=None, - hoverinfo=None, - hoveron=None, - hovertemplate=None, - labelfont=None, - legendgrouptitle=None, - legendwidth=None, - line=None, - meta=None, - metasrc=None, - name=None, - sortpaths=None, - stream=None, - tickfont=None, - uid=None, - uirevision=None, - visible=None, + arrangement: Any|None = None, + bundlecolors: bool|None = None, + counts: int|float|None = None, + countssrc: str|None = None, + dimensions: None|None = None, + dimensiondefaults: None|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + labelfont: None|None = None, + legendgrouptitle: None|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + sortpaths: Any|None = None, + stream: None|None = None, + tickfont: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -11836,31 +11839,31 @@ def add_parcats(self, return self.add_trace( new_trace, row=row, col=col) def add_parcoords(self, - customdata=None, - customdatasrc=None, - dimensions=None, - dimensiondefaults=None, - domain=None, - ids=None, - idssrc=None, - labelangle=None, - labelfont=None, - labelside=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - meta=None, - metasrc=None, - name=None, - rangefont=None, - stream=None, - tickfont=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dimensions: None|None = None, + dimensiondefaults: None|None = None, + domain: None|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + labelangle: int|float|None = None, + labelfont: None|None = None, + labelside: Any|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + rangefont: None|None = None, + stream: None|None = None, + tickfont: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -12043,59 +12046,59 @@ def add_parcoords(self, return self.add_trace( new_trace, row=row, col=col) def add_pie(self, - automargin=None, - customdata=None, - customdatasrc=None, - direction=None, - dlabel=None, - domain=None, - hole=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextfont=None, - insidetextorientation=None, - label0=None, - labels=None, - labelssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - outsidetextfont=None, - pull=None, - pullsrc=None, - rotation=None, - scalegroup=None, - showlegend=None, - sort=None, - stream=None, - text=None, - textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - title=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + automargin: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + direction: Any|None = None, + dlabel: int|float|None = None, + domain: None|None = None, + hole: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextfont: None|None = None, + insidetextorientation: Any|None = None, + label0: int|float|None = None, + labels: NDArray|None = None, + labelssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + outsidetextfont: None|None = None, + pull: int|float|None = None, + pullsrc: str|None = None, + rotation: int|float|None = None, + scalegroup: str|None = None, + showlegend: bool|None = None, + sort: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + title: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -12446,32 +12449,32 @@ def add_pie(self, return self.add_trace( new_trace, row=row, col=col) def add_sankey(self, - arrangement=None, - customdata=None, - customdatasrc=None, - domain=None, - hoverinfo=None, - hoverlabel=None, - ids=None, - idssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - link=None, - meta=None, - metasrc=None, - name=None, - node=None, - orientation=None, - selectedpoints=None, - stream=None, - textfont=None, - uid=None, - uirevision=None, - valueformat=None, - valuesuffix=None, - visible=None, + arrangement: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoverlabel: None|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + link: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + node: None|None = None, + orientation: Any|None = None, + selectedpoints: Any|None = None, + stream: None|None = None, + textfont: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + valueformat: str|None = None, + valuesuffix: str|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -12666,80 +12669,80 @@ def add_sankey(self, return self.add_trace( new_trace, row=row, col=col) def add_scatter(self, - alignmentgroup=None, - cliponaxis=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - error_x=None, - error_y=None, - fill=None, - fillcolor=None, - fillgradient=None, - fillpattern=None, - groupnorm=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - offsetgroup=None, - opacity=None, - orientation=None, - selected=None, - selectedpoints=None, - showlegend=None, - stackgaps=None, - stackgroup=None, - stream=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + cliponaxis: bool|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + error_x: None|None = None, + error_y: None|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + fillgradient: None|None = None, + fillpattern: None|None = None, + groupnorm: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + offsetgroup: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stackgaps: Any|None = None, + stackgroup: str|None = None, + stream: None|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -13282,61 +13285,61 @@ def add_scatter(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_scatter3d(self, - connectgaps=None, - customdata=None, - customdatasrc=None, - error_x=None, - error_y=None, - error_z=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - projection=None, - scene=None, - showlegend=None, - stream=None, - surfaceaxis=None, - surfacecolor=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - z=None, - zcalendar=None, - zhoverformat=None, - zsrc=None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + error_x: None|None = None, + error_y: None|None = None, + error_z: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + projection: None|None = None, + scene: str|None = None, + showlegend: bool|None = None, + stream: None|None = None, + surfaceaxis: Any|None = None, + surfacecolor: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zcalendar: Any|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -13716,56 +13719,56 @@ def add_scatter3d(self, return self.add_trace( new_trace, row=row, col=col) def add_scattercarpet(self, - a=None, - asrc=None, - b=None, - bsrc=None, - carpet=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - xaxis=None, - yaxis=None, - zorder=None, + a: NDArray|None = None, + asrc: str|None = None, + b: NDArray|None = None, + bsrc: str|None = None, + carpet: str|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + xaxis: str|None = None, + yaxis: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -14126,57 +14129,57 @@ def add_scattercarpet(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_scattergeo(self, - connectgaps=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - fill=None, - fillcolor=None, - geo=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - locationmode=None, - locations=None, - locationssrc=None, - lon=None, - lonsrc=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + featureidkey: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + geo: str|None = None, + geojson: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + lat: NDArray|None = None, + latsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + locationmode: Any|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + lon: NDArray|None = None, + lonsrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -14533,69 +14536,69 @@ def add_scattergeo(self, return self.add_trace( new_trace, row=row, col=col) def add_scattergl(self, - connectgaps=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - error_x=None, - error_y=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + error_x: None|None = None, + error_y: None|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, row=None, col=None, secondary_y=None, @@ -15043,53 +15046,53 @@ def add_scattergl(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_scattermap(self, - below=None, - cluster=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - lon=None, - lonsrc=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + below: str|None = None, + cluster: None|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + lat: NDArray|None = None, + latsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + lon: NDArray|None = None, + lonsrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -15418,53 +15421,53 @@ def add_scattermap(self, return self.add_trace( new_trace, row=row, col=col) def add_scattermapbox(self, - below=None, - cluster=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - lon=None, - lonsrc=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + below: str|None = None, + cluster: None|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + lat: NDArray|None = None, + latsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + lon: NDArray|None = None, + lonsrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -15802,59 +15805,59 @@ def add_scattermapbox(self, return self.add_trace( new_trace, row=row, col=col) def add_scatterpolar(self, - cliponaxis=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - dr=None, - dtheta=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - r=None, - r0=None, - rsrc=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - theta=None, - theta0=None, - thetasrc=None, - thetaunit=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + cliponaxis: bool|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dr: int|float|None = None, + dtheta: int|float|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + r: NDArray|None = None, + r0: Any|None = None, + rsrc: str|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + theta: NDArray|None = None, + theta0: Any|None = None, + thetasrc: str|None = None, + thetaunit: Any|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -16222,57 +16225,57 @@ def add_scatterpolar(self, return self.add_trace( new_trace, row=row, col=col) def add_scatterpolargl(self, - connectgaps=None, - customdata=None, - customdatasrc=None, - dr=None, - dtheta=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - r=None, - r0=None, - rsrc=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - theta=None, - theta0=None, - thetasrc=None, - thetaunit=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dr: int|float|None = None, + dtheta: int|float|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + r: NDArray|None = None, + r0: Any|None = None, + rsrc: str|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + theta: NDArray|None = None, + theta0: Any|None = None, + thetasrc: str|None = None, + thetaunit: Any|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -16637,54 +16640,54 @@ def add_scatterpolargl(self, return self.add_trace( new_trace, row=row, col=col) def add_scattersmith(self, - cliponaxis=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - imag=None, - imagsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - real=None, - realsrc=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + cliponaxis: bool|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + imag: NDArray|None = None, + imagsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + real: NDArray|None = None, + realsrc: str|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -17034,57 +17037,57 @@ def add_scattersmith(self, return self.add_trace( new_trace, row=row, col=col) def add_scatterternary(self, - a=None, - asrc=None, - b=None, - bsrc=None, - c=None, - cliponaxis=None, - connectgaps=None, - csrc=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - sum=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + a: NDArray|None = None, + asrc: str|None = None, + b: NDArray|None = None, + bsrc: str|None = None, + c: NDArray|None = None, + cliponaxis: bool|None = None, + connectgaps: bool|None = None, + csrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + sum: int|float|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -17453,46 +17456,46 @@ def add_scatterternary(self, return self.add_trace( new_trace, row=row, col=col) def add_splom(self, - customdata=None, - customdatasrc=None, - diagonal=None, - dimensions=None, - dimensiondefaults=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - showlowerhalf=None, - showupperhalf=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - xaxes=None, - xhoverformat=None, - yaxes=None, - yhoverformat=None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + diagonal: None|None = None, + dimensions: None|None = None, + dimensiondefaults: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + showlowerhalf: bool|None = None, + showupperhalf: bool|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + xaxes: list|None = None, + xhoverformat: str|None = None, + yaxes: list|None = None, + yhoverformat: str|None = None, row=None, col=None, **kwargs @@ -17800,65 +17803,65 @@ def add_splom(self, return self.add_trace( new_trace, row=row, col=col) def add_streamtube(self, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - maxdisplayed=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - sizeref=None, - starts=None, - stream=None, - text=None, - u=None, - uhoverformat=None, - uid=None, - uirevision=None, - usrc=None, - v=None, - vhoverformat=None, - visible=None, - vsrc=None, - w=None, - whoverformat=None, - wsrc=None, - x=None, - xhoverformat=None, - xsrc=None, - y=None, - yhoverformat=None, - ysrc=None, - z=None, - zhoverformat=None, - zsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + maxdisplayed: int|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + sizeref: int|float|None = None, + starts: None|None = None, + stream: None|None = None, + text: str|None = None, + u: NDArray|None = None, + uhoverformat: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + usrc: str|None = None, + v: NDArray|None = None, + vhoverformat: str|None = None, + visible: Any|None = None, + vsrc: str|None = None, + w: NDArray|None = None, + whoverformat: str|None = None, + wsrc: str|None = None, + x: NDArray|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -18276,54 +18279,54 @@ def add_streamtube(self, return self.add_trace( new_trace, row=row, col=col) def add_sunburst(self, - branchvalues=None, - count=None, - customdata=None, - customdatasrc=None, - domain=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextfont=None, - insidetextorientation=None, - labels=None, - labelssrc=None, - leaf=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, - marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - outsidetextfont=None, - parents=None, - parentssrc=None, - root=None, - rotation=None, - sort=None, - stream=None, - text=None, - textfont=None, - textinfo=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + branchvalues: Any|None = None, + count: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextfont: None|None = None, + insidetextorientation: Any|None = None, + labels: NDArray|None = None, + labelssrc: str|None = None, + leaf: None|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + level: Any|None = None, + marker: None|None = None, + maxdepth: int|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + outsidetextfont: None|None = None, + parents: NDArray|None = None, + parentssrc: str|None = None, + root: None|None = None, + rotation: int|float|None = None, + sort: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -18666,64 +18669,64 @@ def add_sunburst(self, return self.add_trace( new_trace, row=row, col=col) def add_surface(self, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colorscale=None, - connectgaps=None, - contours=None, - customdata=None, - customdatasrc=None, - hidesurface=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - opacityscale=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - stream=None, - surfacecolor=None, - surfacecolorsrc=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - z=None, - zcalendar=None, - zhoverformat=None, - zsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + connectgaps: bool|None = None, + contours: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + hidesurface: bool|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + opacityscale: Any|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + surfacecolor: NDArray|None = None, + surfacecolorsrc: str|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zcalendar: Any|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -19134,31 +19137,31 @@ def add_surface(self, return self.add_trace( new_trace, row=row, col=col) def add_table(self, - cells=None, - columnorder=None, - columnordersrc=None, - columnwidth=None, - columnwidthsrc=None, - customdata=None, - customdatasrc=None, - domain=None, - header=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - ids=None, - idssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - stream=None, - uid=None, - uirevision=None, - visible=None, + cells: None|None = None, + columnorder: NDArray|None = None, + columnordersrc: str|None = None, + columnwidth: int|float|None = None, + columnwidthsrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + domain: None|None = None, + header: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + stream: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -19343,54 +19346,54 @@ def add_table(self, return self.add_trace( new_trace, row=row, col=col) def add_treemap(self, - branchvalues=None, - count=None, - customdata=None, - customdatasrc=None, - domain=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextfont=None, - labels=None, - labelssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, - marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - outsidetextfont=None, - parents=None, - parentssrc=None, - pathbar=None, - root=None, - sort=None, - stream=None, - text=None, - textfont=None, - textinfo=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - tiling=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + branchvalues: Any|None = None, + count: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextfont: None|None = None, + labels: NDArray|None = None, + labelssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + level: Any|None = None, + marker: None|None = None, + maxdepth: int|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + outsidetextfont: None|None = None, + parents: NDArray|None = None, + parentssrc: str|None = None, + pathbar: None|None = None, + root: None|None = None, + sort: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + tiling: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -19726,67 +19729,67 @@ def add_treemap(self, return self.add_trace( new_trace, row=row, col=col) def add_violin(self, - alignmentgroup=None, - bandwidth=None, - box=None, - customdata=None, - customdatasrc=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - jitter=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meanline=None, - meta=None, - metasrc=None, - name=None, - offsetgroup=None, - opacity=None, - orientation=None, - pointpos=None, - points=None, - quartilemethod=None, - scalegroup=None, - scalemode=None, - selected=None, - selectedpoints=None, - showlegend=None, - side=None, - span=None, - spanmode=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - width=None, - x=None, - x0=None, - xaxis=None, - xhoverformat=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - yhoverformat=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + bandwidth: int|float|None = None, + box: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + jitter: int|float|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meanline: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + offsetgroup: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + pointpos: int|float|None = None, + points: Any|None = None, + quartilemethod: Any|None = None, + scalegroup: str|None = None, + scalemode: Any|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + side: Any|None = None, + span: list|None = None, + spanmode: Any|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + width: int|float|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -20240,67 +20243,67 @@ def add_violin(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_volume(self, - autocolorscale=None, - caps=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colorscale=None, - contour=None, - customdata=None, - customdatasrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - isomax=None, - isomin=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - opacityscale=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - slices=None, - spaceframe=None, - stream=None, - surface=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - value=None, - valuehoverformat=None, - valuesrc=None, - visible=None, - x=None, - xhoverformat=None, - xsrc=None, - y=None, - yhoverformat=None, - ysrc=None, - z=None, - zhoverformat=None, - zsrc=None, + autocolorscale: bool|None = None, + caps: None|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + contour: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + flatshading: bool|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + isomax: int|float|None = None, + isomin: int|float|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + opacityscale: Any|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + slices: None|None = None, + spaceframe: None|None = None, + stream: None|None = None, + surface: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + value: NDArray|None = None, + valuehoverformat: str|None = None, + valuesrc: str|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -20722,79 +20725,79 @@ def add_volume(self, return self.add_trace( new_trace, row=row, col=col) def add_waterfall(self, - alignmentgroup=None, - base=None, - cliponaxis=None, - connector=None, - constraintext=None, - customdata=None, - customdatasrc=None, - decreasing=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - increasing=None, - insidetextanchor=None, - insidetextfont=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - measure=None, - measuresrc=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetgroup=None, - offsetsrc=None, - opacity=None, - orientation=None, - outsidetextfont=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textangle=None, - textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - totals=None, - uid=None, - uirevision=None, - visible=None, - width=None, - widthsrc=None, - x=None, - x0=None, - xaxis=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + base: int|float|None = None, + cliponaxis: bool|None = None, + connector: None|None = None, + constraintext: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + decreasing: None|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + increasing: None|None = None, + insidetextanchor: Any|None = None, + insidetextfont: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + measure: NDArray|None = None, + measuresrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + offset: int|float|None = None, + offsetgroup: str|None = None, + offsetsrc: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + outsidetextfont: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textangle: int|float|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + totals: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + width: int|float|None = None, + widthsrc: str|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -22830,49 +22833,49 @@ def update_annotations( def add_annotation(self, arg=None, - align=None, - arrowcolor=None, - arrowhead=None, - arrowside=None, - arrowsize=None, - arrowwidth=None, - ax=None, - axref=None, - ay=None, - ayref=None, - bgcolor=None, - bordercolor=None, - borderpad=None, - borderwidth=None, - captureevents=None, - clicktoshow=None, - font=None, - height=None, - hoverlabel=None, - hovertext=None, - name=None, - opacity=None, - showarrow=None, - standoff=None, - startarrowhead=None, - startarrowsize=None, - startstandoff=None, - templateitemname=None, - text=None, - textangle=None, - valign=None, - visible=None, - width=None, - x=None, - xanchor=None, - xclick=None, - xref=None, - xshift=None, - y=None, - yanchor=None, - yclick=None, - yref=None, - yshift=None, + align: Any|None = None, + arrowcolor: str|None = None, + arrowhead: int|None = None, + arrowside: Any|None = None, + arrowsize: int|float|None = None, + arrowwidth: int|float|None = None, + ax: Any|None = None, + axref: Any|None = None, + ay: Any|None = None, + ayref: Any|None = None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderpad: int|float|None = None, + borderwidth: int|float|None = None, + captureevents: bool|None = None, + clicktoshow: Any|None = None, + font: None|None = None, + height: int|float|None = None, + hoverlabel: None|None = None, + hovertext: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + showarrow: bool|None = None, + standoff: int|float|None = None, + startarrowhead: int|None = None, + startarrowsize: int|float|None = None, + startstandoff: int|float|None = None, + templateitemname: str|None = None, + text: str|None = None, + textangle: int|float|None = None, + valign: Any|None = None, + visible: bool|None = None, + width: int|float|None = None, + x: Any|None = None, + xanchor: Any|None = None, + xclick: Any|None = None, + xref: Any|None = None, + xshift: int|float|None = None, + y: Any|None = None, + yanchor: Any|None = None, + yclick: Any|None = None, + yref: Any|None = None, + yshift: int|float|None = None, row=None, col=None, secondary_y=None, @@ -23410,21 +23413,21 @@ def update_layout_images( def add_layout_image(self, arg=None, - layer=None, - name=None, - opacity=None, - sizex=None, - sizey=None, - sizing=None, - source=None, - templateitemname=None, - visible=None, - x=None, - xanchor=None, - xref=None, - y=None, - yanchor=None, - yref=None, + layer: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + sizex: int|float|None = None, + sizey: int|float|None = None, + sizing: Any|None = None, + source: str|None = None, + templateitemname: str|None = None, + visible: bool|None = None, + x: Any|None = None, + xanchor: Any|None = None, + xref: Any|None = None, + y: Any|None = None, + yanchor: Any|None = None, + yref: Any|None = None, row=None, col=None, secondary_y=None, @@ -23740,18 +23743,18 @@ def update_selections( def add_selection(self, arg=None, - line=None, - name=None, - opacity=None, - path=None, - templateitemname=None, - type=None, - x0=None, - x1=None, - xref=None, - y0=None, - y1=None, - yref=None, + line: None|None = None, + name: str|None = None, + opacity: int|float|None = None, + path: str|None = None, + templateitemname: str|None = None, + type: Any|None = None, + x0: Any|None = None, + x1: Any|None = None, + xref: Any|None = None, + y0: Any|None = None, + y1: Any|None = None, + yref: Any|None = None, row=None, col=None, secondary_y=None, @@ -24049,38 +24052,38 @@ def update_shapes( def add_shape(self, arg=None, - editable=None, - fillcolor=None, - fillrule=None, - label=None, - layer=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - name=None, - opacity=None, - path=None, - showlegend=None, - templateitemname=None, - type=None, - visible=None, - x0=None, - x0shift=None, - x1=None, - x1shift=None, - xanchor=None, - xref=None, - xsizemode=None, - y0=None, - y0shift=None, - y1=None, - y1shift=None, - yanchor=None, - yref=None, - ysizemode=None, + editable: bool|None = None, + fillcolor: str|None = None, + fillrule: Any|None = None, + label: None|None = None, + layer: Any|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + name: str|None = None, + opacity: int|float|None = None, + path: str|None = None, + showlegend: bool|None = None, + templateitemname: str|None = None, + type: Any|None = None, + visible: Any|None = None, + x0: Any|None = None, + x0shift: int|float|None = None, + x1: Any|None = None, + x1shift: int|float|None = None, + xanchor: Any|None = None, + xref: Any|None = None, + xsizemode: Any|None = None, + y0: Any|None = None, + y0shift: int|float|None = None, + y1: Any|None = None, + y1shift: int|float|None = None, + yanchor: Any|None = None, + yref: Any|None = None, + ysizemode: Any|None = None, row=None, col=None, secondary_y=None, diff --git a/plotly/graph_objs/_figurewidget.py b/plotly/graph_objs/_figurewidget.py index 999443a8de..061d133d6f 100644 --- a/plotly/graph_objs/_figurewidget.py +++ b/plotly/graph_objs/_figurewidget.py @@ -1,10 +1,13 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basewidget import BaseFigureWidget class FigureWidget(BaseFigureWidget): def __init__(self, data=None, layout=None, - frames=None, skip_invalid=False, **kwargs): + frames=None, skip_invalid: bool = False, **kwargs): """ Create a new :class:FigureWidget instance @@ -580,80 +583,80 @@ def set_subplots(self, rows=None, cols=None, **make_subplots_args) -> "FigureWid return super().set_subplots(rows, cols, **make_subplots_args) def add_bar(self, - alignmentgroup=None, - base=None, - basesrc=None, - cliponaxis=None, - constraintext=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - error_x=None, - error_y=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, - insidetextfont=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetgroup=None, - offsetsrc=None, - opacity=None, - orientation=None, - outsidetextfont=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textangle=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - width=None, - widthsrc=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + base: Any|None = None, + basesrc: str|None = None, + cliponaxis: bool|None = None, + constraintext: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + error_x: None|None = None, + error_y: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextanchor: Any|None = None, + insidetextfont: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + offset: int|float|None = None, + offsetgroup: str|None = None, + offsetsrc: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + outsidetextfont: None|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textangle: int|float|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + width: int|float|None = None, + widthsrc: str|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -1147,53 +1150,53 @@ def add_bar(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_barpolar(self, - base=None, - basesrc=None, - customdata=None, - customdatasrc=None, - dr=None, - dtheta=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetsrc=None, - opacity=None, - r=None, - r0=None, - rsrc=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textsrc=None, - theta=None, - theta0=None, - thetasrc=None, - thetaunit=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - width=None, - widthsrc=None, + base: Any|None = None, + basesrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dr: int|float|None = None, + dtheta: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + offset: int|float|None = None, + offsetsrc: str|None = None, + opacity: int|float|None = None, + r: NDArray|None = None, + r0: Any|None = None, + rsrc: str|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textsrc: str|None = None, + theta: NDArray|None = None, + theta0: Any|None = None, + thetasrc: str|None = None, + thetaunit: Any|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + width: int|float|None = None, + widthsrc: str|None = None, row=None, col=None, **kwargs @@ -1492,92 +1495,92 @@ def add_barpolar(self, return self.add_trace( new_trace, row=row, col=col) def add_box(self, - alignmentgroup=None, - boxmean=None, - boxpoints=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - jitter=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - lowerfence=None, - lowerfencesrc=None, - marker=None, - mean=None, - meansrc=None, - median=None, - mediansrc=None, - meta=None, - metasrc=None, - name=None, - notched=None, - notchspan=None, - notchspansrc=None, - notchwidth=None, - offsetgroup=None, - opacity=None, - orientation=None, - pointpos=None, - q1=None, - q1src=None, - q3=None, - q3src=None, - quartilemethod=None, - sd=None, - sdmultiple=None, - sdsrc=None, - selected=None, - selectedpoints=None, - showlegend=None, - showwhiskers=None, - sizemode=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - upperfence=None, - upperfencesrc=None, - visible=None, - whiskerwidth=None, - width=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + boxmean: Any|None = None, + boxpoints: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + jitter: int|float|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + lowerfence: NDArray|None = None, + lowerfencesrc: str|None = None, + marker: None|None = None, + mean: NDArray|None = None, + meansrc: str|None = None, + median: NDArray|None = None, + mediansrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + notched: bool|None = None, + notchspan: NDArray|None = None, + notchspansrc: str|None = None, + notchwidth: int|float|None = None, + offsetgroup: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + pointpos: int|float|None = None, + q1: NDArray|None = None, + q1src: str|None = None, + q3: NDArray|None = None, + q3src: str|None = None, + quartilemethod: Any|None = None, + sd: NDArray|None = None, + sdmultiple: int|float|None = None, + sdsrc: str|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + showwhiskers: bool|None = None, + sizemode: Any|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + upperfence: NDArray|None = None, + upperfencesrc: str|None = None, + visible: Any|None = None, + whiskerwidth: int|float|None = None, + width: int|float|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -2176,55 +2179,55 @@ def add_box(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_candlestick(self, - close=None, - closesrc=None, - customdata=None, - customdatasrc=None, - decreasing=None, - high=None, - highsrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - increasing=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - low=None, - lowsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - open=None, - opensrc=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - visible=None, - whiskerwidth=None, - x=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - yaxis=None, - yhoverformat=None, - zorder=None, + close: NDArray|None = None, + closesrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + decreasing: None|None = None, + high: NDArray|None = None, + highsrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + increasing: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + low: NDArray|None = None, + lowsrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + open: NDArray|None = None, + opensrc: str|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + whiskerwidth: int|float|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + yaxis: str|None = None, + yhoverformat: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -2550,43 +2553,43 @@ def add_candlestick(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_carpet(self, - a=None, - a0=None, - aaxis=None, - asrc=None, - b=None, - b0=None, - baxis=None, - bsrc=None, - carpet=None, - cheaterslope=None, - color=None, - customdata=None, - customdatasrc=None, - da=None, - db=None, - font=None, - ids=None, - idssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - stream=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xsrc=None, - y=None, - yaxis=None, - ysrc=None, - zorder=None, + a: NDArray|None = None, + a0: int|float|None = None, + aaxis: None|None = None, + asrc: str|None = None, + b: NDArray|None = None, + b0: int|float|None = None, + baxis: None|None = None, + bsrc: str|None = None, + carpet: str|None = None, + cheaterslope: int|float|None = None, + color: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + da: int|float|None = None, + db: int|float|None = None, + font: None|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + stream: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yaxis: str|None = None, + ysrc: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -2835,54 +2838,54 @@ def add_carpet(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_choropleth(self, - autocolorscale=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geo=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locationmode=None, - locations=None, - locationssrc=None, - marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, - selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autocolorscale: bool|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + featureidkey: str|None = None, + geo: str|None = None, + geojson: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + locationmode: Any|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + reversescale: bool|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -3218,54 +3221,54 @@ def add_choropleth(self, return self.add_trace( new_trace, row=row, col=col) def add_choroplethmap(self, - autocolorscale=None, - below=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locations=None, - locationssrc=None, - marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, - selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, - stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autocolorscale: bool|None = None, + below: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + featureidkey: str|None = None, + geojson: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + reversescale: bool|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -3599,54 +3602,54 @@ def add_choroplethmap(self, return self.add_trace( new_trace, row=row, col=col) def add_choroplethmapbox(self, - autocolorscale=None, - below=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locations=None, - locationssrc=None, - marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, - selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, - stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autocolorscale: bool|None = None, + below: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + featureidkey: str|None = None, + geojson: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + reversescale: bool|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -3989,67 +3992,67 @@ def add_choroplethmapbox(self, return self.add_trace( new_trace, row=row, col=col) def add_cone(self, - anchor=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - sizemode=None, - sizeref=None, - stream=None, - text=None, - textsrc=None, - u=None, - uhoverformat=None, - uid=None, - uirevision=None, - usrc=None, - v=None, - vhoverformat=None, - visible=None, - vsrc=None, - w=None, - whoverformat=None, - wsrc=None, - x=None, - xhoverformat=None, - xsrc=None, - y=None, - yhoverformat=None, - ysrc=None, - z=None, - zhoverformat=None, - zsrc=None, + anchor: Any|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + sizemode: Any|None = None, + sizeref: int|float|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + u: NDArray|None = None, + uhoverformat: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + usrc: str|None = None, + v: NDArray|None = None, + vhoverformat: str|None = None, + visible: Any|None = None, + vsrc: str|None = None, + w: NDArray|None = None, + whoverformat: str|None = None, + wsrc: str|None = None, + x: NDArray|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -4484,79 +4487,79 @@ def add_cone(self, return self.add_trace( new_trace, row=row, col=col) def add_contour(self, - autocolorscale=None, - autocontour=None, - coloraxis=None, - colorbar=None, - colorscale=None, - connectgaps=None, - contours=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoverongaps=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - meta=None, - metasrc=None, - name=None, - ncontours=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - text=None, - textfont=None, - textsrc=None, - texttemplate=None, - transpose=None, - uid=None, - uirevision=None, - visible=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - xtype=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - ytype=None, - z=None, - zauto=None, - zhoverformat=None, - zmax=None, - zmid=None, - zmin=None, - zorder=None, - zsrc=None, + autocolorscale: bool|None = None, + autocontour: bool|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + connectgaps: bool|None = None, + contours: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoverongaps: bool|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: NDArray|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + ncontours: int|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + transpose: bool|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + xtype: Any|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + ytype: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zhoverformat: str|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zorder: int|None = None, + zsrc: str|None = None, row=None, col=None, secondary_y=None, @@ -5058,60 +5061,60 @@ def add_contour(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_contourcarpet(self, - a=None, - a0=None, - asrc=None, - atype=None, - autocolorscale=None, - autocontour=None, - b=None, - b0=None, - bsrc=None, - btype=None, - carpet=None, - coloraxis=None, - colorbar=None, - colorscale=None, - contours=None, - customdata=None, - customdatasrc=None, - da=None, - db=None, - fillcolor=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - meta=None, - metasrc=None, - name=None, - ncontours=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - text=None, - textsrc=None, - transpose=None, - uid=None, - uirevision=None, - visible=None, - xaxis=None, - yaxis=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zorder=None, - zsrc=None, + a: NDArray|None = None, + a0: Any|None = None, + asrc: str|None = None, + atype: Any|None = None, + autocolorscale: bool|None = None, + autocontour: bool|None = None, + b: NDArray|None = None, + b0: Any|None = None, + bsrc: str|None = None, + btype: Any|None = None, + carpet: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + contours: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + da: int|float|None = None, + db: int|float|None = None, + fillcolor: str|None = None, + hovertext: NDArray|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + ncontours: int|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textsrc: str|None = None, + transpose: bool|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + xaxis: str|None = None, + yaxis: str|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zorder: int|None = None, + zsrc: str|None = None, row=None, col=None, secondary_y=None, @@ -5453,53 +5456,53 @@ def add_contourcarpet(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_densitymap(self, - autocolorscale=None, - below=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lon=None, - lonsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - radius=None, - radiussrc=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autocolorscale: bool|None = None, + below: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + lat: NDArray|None = None, + latsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lon: NDArray|None = None, + lonsrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + radius: int|float|None = None, + radiussrc: str|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -5830,53 +5833,53 @@ def add_densitymap(self, return self.add_trace( new_trace, row=row, col=col) def add_densitymapbox(self, - autocolorscale=None, - below=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lon=None, - lonsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - radius=None, - radiussrc=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autocolorscale: bool|None = None, + below: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + lat: NDArray|None = None, + latsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lon: NDArray|None = None, + lonsrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + radius: int|float|None = None, + radiussrc: str|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -6216,72 +6219,72 @@ def add_densitymapbox(self, return self.add_trace( new_trace, row=row, col=col) def add_funnel(self, - alignmentgroup=None, - cliponaxis=None, - connector=None, - constraintext=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, - insidetextfont=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetgroup=None, - opacity=None, - orientation=None, - outsidetextfont=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textangle=None, - textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - visible=None, - width=None, - x=None, - x0=None, - xaxis=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + cliponaxis: bool|None = None, + connector: None|None = None, + constraintext: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextanchor: Any|None = None, + insidetextfont: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + offset: int|float|None = None, + offsetgroup: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + outsidetextfont: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textangle: int|float|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + width: int|float|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -6751,52 +6754,52 @@ def add_funnel(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_funnelarea(self, - aspectratio=None, - baseratio=None, - customdata=None, - customdatasrc=None, - dlabel=None, - domain=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextfont=None, - label0=None, - labels=None, - labelssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - scalegroup=None, - showlegend=None, - stream=None, - text=None, - textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - title=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + aspectratio: int|float|None = None, + baseratio: int|float|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dlabel: int|float|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextfont: None|None = None, + label0: int|float|None = None, + labels: NDArray|None = None, + labelssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + scalegroup: str|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + title: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -7111,77 +7114,77 @@ def add_funnelarea(self, return self.add_trace( new_trace, row=row, col=col) def add_heatmap(self, - autocolorscale=None, - coloraxis=None, - colorbar=None, - colorscale=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoverongaps=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - text=None, - textfont=None, - textsrc=None, - texttemplate=None, - transpose=None, - uid=None, - uirevision=None, - visible=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xgap=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - xtype=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - ygap=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - ytype=None, - z=None, - zauto=None, - zhoverformat=None, - zmax=None, - zmid=None, - zmin=None, - zorder=None, - zsmooth=None, - zsrc=None, + autocolorscale: bool|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoverongaps: bool|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: NDArray|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + transpose: bool|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xgap: int|float|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + xtype: Any|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + ygap: int|float|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + ytype: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zhoverformat: str|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zorder: int|None = None, + zsmooth: Any|None = None, + zsrc: str|None = None, row=None, col=None, secondary_y=None, @@ -7673,72 +7676,72 @@ def add_heatmap(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_histogram(self, - alignmentgroup=None, - autobinx=None, - autobiny=None, - bingroup=None, - cliponaxis=None, - constraintext=None, - cumulative=None, - customdata=None, - customdatasrc=None, - error_x=None, - error_y=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, - insidetextfont=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - nbinsx=None, - nbinsy=None, - offsetgroup=None, - opacity=None, - orientation=None, - outsidetextfont=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textangle=None, - textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - x=None, - xaxis=None, - xbins=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, - ybins=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + autobinx: bool|None = None, + autobiny: bool|None = None, + bingroup: str|None = None, + cliponaxis: bool|None = None, + constraintext: Any|None = None, + cumulative: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + error_x: None|None = None, + error_y: None|None = None, + histfunc: Any|None = None, + histnorm: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextanchor: Any|None = None, + insidetextfont: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + nbinsx: int|None = None, + nbinsy: int|None = None, + offsetgroup: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + outsidetextfont: None|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textangle: int|float|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xbins: None|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yaxis: str|None = None, + ybins: None|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -8213,69 +8216,69 @@ def add_histogram(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_histogram2d(self, - autobinx=None, - autobiny=None, - autocolorscale=None, - bingroup=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - nbinsx=None, - nbinsy=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - textfont=None, - texttemplate=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xbingroup=None, - xbins=None, - xcalendar=None, - xgap=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, - ybingroup=None, - ybins=None, - ycalendar=None, - ygap=None, - yhoverformat=None, - ysrc=None, - z=None, - zauto=None, - zhoverformat=None, - zmax=None, - zmid=None, - zmin=None, - zsmooth=None, - zsrc=None, + autobinx: bool|None = None, + autobiny: bool|None = None, + autocolorscale: bool|None = None, + bingroup: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + histfunc: Any|None = None, + histnorm: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + nbinsx: int|None = None, + nbinsy: int|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + textfont: None|None = None, + texttemplate: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xbingroup: str|None = None, + xbins: None|None = None, + xcalendar: Any|None = None, + xgap: int|float|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yaxis: str|None = None, + ybingroup: str|None = None, + ybins: None|None = None, + ycalendar: Any|None = None, + ygap: int|float|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zhoverformat: str|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsmooth: Any|None = None, + zsrc: str|None = None, row=None, col=None, secondary_y=None, @@ -8744,70 +8747,70 @@ def add_histogram2d(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_histogram2dcontour(self, - autobinx=None, - autobiny=None, - autocolorscale=None, - autocontour=None, - bingroup=None, - coloraxis=None, - colorbar=None, - colorscale=None, - contours=None, - customdata=None, - customdatasrc=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - name=None, - nbinsx=None, - nbinsy=None, - ncontours=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - textfont=None, - texttemplate=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xbingroup=None, - xbins=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, - ybingroup=None, - ybins=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - z=None, - zauto=None, - zhoverformat=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autobinx: bool|None = None, + autobiny: bool|None = None, + autocolorscale: bool|None = None, + autocontour: bool|None = None, + bingroup: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + contours: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + histfunc: Any|None = None, + histnorm: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + nbinsx: int|None = None, + nbinsy: int|None = None, + ncontours: int|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + textfont: None|None = None, + texttemplate: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xbingroup: str|None = None, + xbins: None|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yaxis: str|None = None, + ybingroup: str|None = None, + ybins: None|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zhoverformat: str|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, row=None, col=None, secondary_y=None, @@ -9290,55 +9293,55 @@ def add_histogram2dcontour(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_icicle(self, - branchvalues=None, - count=None, - customdata=None, - customdatasrc=None, - domain=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextfont=None, - labels=None, - labelssrc=None, - leaf=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, - marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - outsidetextfont=None, - parents=None, - parentssrc=None, - pathbar=None, - root=None, - sort=None, - stream=None, - text=None, - textfont=None, - textinfo=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - tiling=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + branchvalues: Any|None = None, + count: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextfont: None|None = None, + labels: NDArray|None = None, + labelssrc: str|None = None, + leaf: None|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + level: Any|None = None, + marker: None|None = None, + maxdepth: int|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + outsidetextfont: None|None = None, + parents: NDArray|None = None, + parentssrc: str|None = None, + pathbar: None|None = None, + root: None|None = None, + sort: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + tiling: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -9677,45 +9680,45 @@ def add_icicle(self, return self.add_trace( new_trace, row=row, col=col) def add_image(self, - colormodel=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - source=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - visible=None, - x0=None, - xaxis=None, - y0=None, - yaxis=None, - z=None, - zmax=None, - zmin=None, - zorder=None, - zsmooth=None, - zsrc=None, + colormodel: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: NDArray|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + source: str|None = None, + stream: None|None = None, + text: NDArray|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x0: Any|None = None, + xaxis: str|None = None, + y0: Any|None = None, + yaxis: str|None = None, + z: NDArray|None = None, + zmax: list|None = None, + zmin: list|None = None, + zorder: int|None = None, + zsmooth: Any|None = None, + zsrc: str|None = None, row=None, col=None, secondary_y=None, @@ -10015,29 +10018,29 @@ def add_image(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_indicator(self, - align=None, - customdata=None, - customdatasrc=None, - delta=None, - domain=None, - gauge=None, - ids=None, - idssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - mode=None, - name=None, - number=None, - stream=None, - title=None, - uid=None, - uirevision=None, - value=None, - visible=None, + align: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + delta: None|None = None, + domain: None|None = None, + gauge: None|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + number: None|None = None, + stream: None|None = None, + title: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + value: int|float|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -10213,66 +10216,66 @@ def add_indicator(self, return self.add_trace( new_trace, row=row, col=col) def add_isosurface(self, - autocolorscale=None, - caps=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colorscale=None, - contour=None, - customdata=None, - customdatasrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - isomax=None, - isomin=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - slices=None, - spaceframe=None, - stream=None, - surface=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - value=None, - valuehoverformat=None, - valuesrc=None, - visible=None, - x=None, - xhoverformat=None, - xsrc=None, - y=None, - yhoverformat=None, - ysrc=None, - z=None, - zhoverformat=None, - zsrc=None, + autocolorscale: bool|None = None, + caps: None|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + contour: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + flatshading: bool|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + isomax: int|float|None = None, + isomin: int|float|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + slices: None|None = None, + spaceframe: None|None = None, + stream: None|None = None, + surface: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + value: NDArray|None = None, + valuehoverformat: str|None = None, + valuesrc: str|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -10682,76 +10685,76 @@ def add_isosurface(self, return self.add_trace( new_trace, row=row, col=col) def add_mesh3d(self, - alphahull=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - contour=None, - customdata=None, - customdatasrc=None, - delaunayaxis=None, - facecolor=None, - facecolorsrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - i=None, - ids=None, - idssrc=None, - intensity=None, - intensitymode=None, - intensitysrc=None, - isrc=None, - j=None, - jsrc=None, - k=None, - ksrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - vertexcolor=None, - vertexcolorsrc=None, - visible=None, - x=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - z=None, - zcalendar=None, - zhoverformat=None, - zsrc=None, + alphahull: int|float|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + contour: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + delaunayaxis: Any|None = None, + facecolor: NDArray|None = None, + facecolorsrc: str|None = None, + flatshading: bool|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + i: NDArray|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + intensity: NDArray|None = None, + intensitymode: Any|None = None, + intensitysrc: str|None = None, + isrc: str|None = None, + j: NDArray|None = None, + jsrc: str|None = None, + k: NDArray|None = None, + ksrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + vertexcolor: NDArray|None = None, + vertexcolorsrc: str|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zcalendar: Any|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -11241,55 +11244,55 @@ def add_mesh3d(self, return self.add_trace( new_trace, row=row, col=col) def add_ohlc(self, - close=None, - closesrc=None, - customdata=None, - customdatasrc=None, - decreasing=None, - high=None, - highsrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - increasing=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - low=None, - lowsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - open=None, - opensrc=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textsrc=None, - tickwidth=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - yaxis=None, - yhoverformat=None, - zorder=None, + close: NDArray|None = None, + closesrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + decreasing: None|None = None, + high: NDArray|None = None, + highsrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + increasing: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + low: NDArray|None = None, + lowsrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + open: NDArray|None = None, + opensrc: str|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + tickwidth: int|float|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + yaxis: str|None = None, + yhoverformat: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -11614,29 +11617,29 @@ def add_ohlc(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_parcats(self, - arrangement=None, - bundlecolors=None, - counts=None, - countssrc=None, - dimensions=None, - dimensiondefaults=None, - domain=None, - hoverinfo=None, - hoveron=None, - hovertemplate=None, - labelfont=None, - legendgrouptitle=None, - legendwidth=None, - line=None, - meta=None, - metasrc=None, - name=None, - sortpaths=None, - stream=None, - tickfont=None, - uid=None, - uirevision=None, - visible=None, + arrangement: Any|None = None, + bundlecolors: bool|None = None, + counts: int|float|None = None, + countssrc: str|None = None, + dimensions: None|None = None, + dimensiondefaults: None|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + labelfont: None|None = None, + legendgrouptitle: None|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + sortpaths: Any|None = None, + stream: None|None = None, + tickfont: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -11836,31 +11839,31 @@ def add_parcats(self, return self.add_trace( new_trace, row=row, col=col) def add_parcoords(self, - customdata=None, - customdatasrc=None, - dimensions=None, - dimensiondefaults=None, - domain=None, - ids=None, - idssrc=None, - labelangle=None, - labelfont=None, - labelside=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - meta=None, - metasrc=None, - name=None, - rangefont=None, - stream=None, - tickfont=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dimensions: None|None = None, + dimensiondefaults: None|None = None, + domain: None|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + labelangle: int|float|None = None, + labelfont: None|None = None, + labelside: Any|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + rangefont: None|None = None, + stream: None|None = None, + tickfont: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -12043,59 +12046,59 @@ def add_parcoords(self, return self.add_trace( new_trace, row=row, col=col) def add_pie(self, - automargin=None, - customdata=None, - customdatasrc=None, - direction=None, - dlabel=None, - domain=None, - hole=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextfont=None, - insidetextorientation=None, - label0=None, - labels=None, - labelssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - outsidetextfont=None, - pull=None, - pullsrc=None, - rotation=None, - scalegroup=None, - showlegend=None, - sort=None, - stream=None, - text=None, - textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - title=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + automargin: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + direction: Any|None = None, + dlabel: int|float|None = None, + domain: None|None = None, + hole: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextfont: None|None = None, + insidetextorientation: Any|None = None, + label0: int|float|None = None, + labels: NDArray|None = None, + labelssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + outsidetextfont: None|None = None, + pull: int|float|None = None, + pullsrc: str|None = None, + rotation: int|float|None = None, + scalegroup: str|None = None, + showlegend: bool|None = None, + sort: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + title: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -12446,32 +12449,32 @@ def add_pie(self, return self.add_trace( new_trace, row=row, col=col) def add_sankey(self, - arrangement=None, - customdata=None, - customdatasrc=None, - domain=None, - hoverinfo=None, - hoverlabel=None, - ids=None, - idssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - link=None, - meta=None, - metasrc=None, - name=None, - node=None, - orientation=None, - selectedpoints=None, - stream=None, - textfont=None, - uid=None, - uirevision=None, - valueformat=None, - valuesuffix=None, - visible=None, + arrangement: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoverlabel: None|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + link: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + node: None|None = None, + orientation: Any|None = None, + selectedpoints: Any|None = None, + stream: None|None = None, + textfont: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + valueformat: str|None = None, + valuesuffix: str|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -12666,80 +12669,80 @@ def add_sankey(self, return self.add_trace( new_trace, row=row, col=col) def add_scatter(self, - alignmentgroup=None, - cliponaxis=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - error_x=None, - error_y=None, - fill=None, - fillcolor=None, - fillgradient=None, - fillpattern=None, - groupnorm=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - offsetgroup=None, - opacity=None, - orientation=None, - selected=None, - selectedpoints=None, - showlegend=None, - stackgaps=None, - stackgroup=None, - stream=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + cliponaxis: bool|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + error_x: None|None = None, + error_y: None|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + fillgradient: None|None = None, + fillpattern: None|None = None, + groupnorm: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + offsetgroup: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stackgaps: Any|None = None, + stackgroup: str|None = None, + stream: None|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -13282,61 +13285,61 @@ def add_scatter(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_scatter3d(self, - connectgaps=None, - customdata=None, - customdatasrc=None, - error_x=None, - error_y=None, - error_z=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - projection=None, - scene=None, - showlegend=None, - stream=None, - surfaceaxis=None, - surfacecolor=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - z=None, - zcalendar=None, - zhoverformat=None, - zsrc=None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + error_x: None|None = None, + error_y: None|None = None, + error_z: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + projection: None|None = None, + scene: str|None = None, + showlegend: bool|None = None, + stream: None|None = None, + surfaceaxis: Any|None = None, + surfacecolor: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zcalendar: Any|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -13716,56 +13719,56 @@ def add_scatter3d(self, return self.add_trace( new_trace, row=row, col=col) def add_scattercarpet(self, - a=None, - asrc=None, - b=None, - bsrc=None, - carpet=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - xaxis=None, - yaxis=None, - zorder=None, + a: NDArray|None = None, + asrc: str|None = None, + b: NDArray|None = None, + bsrc: str|None = None, + carpet: str|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + xaxis: str|None = None, + yaxis: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -14126,57 +14129,57 @@ def add_scattercarpet(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_scattergeo(self, - connectgaps=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - fill=None, - fillcolor=None, - geo=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - locationmode=None, - locations=None, - locationssrc=None, - lon=None, - lonsrc=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + featureidkey: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + geo: str|None = None, + geojson: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + lat: NDArray|None = None, + latsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + locationmode: Any|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + lon: NDArray|None = None, + lonsrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -14533,69 +14536,69 @@ def add_scattergeo(self, return self.add_trace( new_trace, row=row, col=col) def add_scattergl(self, - connectgaps=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - error_x=None, - error_y=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + error_x: None|None = None, + error_y: None|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, row=None, col=None, secondary_y=None, @@ -15043,53 +15046,53 @@ def add_scattergl(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_scattermap(self, - below=None, - cluster=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - lon=None, - lonsrc=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + below: str|None = None, + cluster: None|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + lat: NDArray|None = None, + latsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + lon: NDArray|None = None, + lonsrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -15418,53 +15421,53 @@ def add_scattermap(self, return self.add_trace( new_trace, row=row, col=col) def add_scattermapbox(self, - below=None, - cluster=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - lon=None, - lonsrc=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + below: str|None = None, + cluster: None|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + lat: NDArray|None = None, + latsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + lon: NDArray|None = None, + lonsrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -15802,59 +15805,59 @@ def add_scattermapbox(self, return self.add_trace( new_trace, row=row, col=col) def add_scatterpolar(self, - cliponaxis=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - dr=None, - dtheta=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - r=None, - r0=None, - rsrc=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - theta=None, - theta0=None, - thetasrc=None, - thetaunit=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + cliponaxis: bool|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dr: int|float|None = None, + dtheta: int|float|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + r: NDArray|None = None, + r0: Any|None = None, + rsrc: str|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + theta: NDArray|None = None, + theta0: Any|None = None, + thetasrc: str|None = None, + thetaunit: Any|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -16222,57 +16225,57 @@ def add_scatterpolar(self, return self.add_trace( new_trace, row=row, col=col) def add_scatterpolargl(self, - connectgaps=None, - customdata=None, - customdatasrc=None, - dr=None, - dtheta=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - r=None, - r0=None, - rsrc=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - theta=None, - theta0=None, - thetasrc=None, - thetaunit=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dr: int|float|None = None, + dtheta: int|float|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + r: NDArray|None = None, + r0: Any|None = None, + rsrc: str|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + theta: NDArray|None = None, + theta0: Any|None = None, + thetasrc: str|None = None, + thetaunit: Any|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -16637,54 +16640,54 @@ def add_scatterpolargl(self, return self.add_trace( new_trace, row=row, col=col) def add_scattersmith(self, - cliponaxis=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - imag=None, - imagsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - real=None, - realsrc=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + cliponaxis: bool|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + imag: NDArray|None = None, + imagsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + real: NDArray|None = None, + realsrc: str|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -17034,57 +17037,57 @@ def add_scattersmith(self, return self.add_trace( new_trace, row=row, col=col) def add_scatterternary(self, - a=None, - asrc=None, - b=None, - bsrc=None, - c=None, - cliponaxis=None, - connectgaps=None, - csrc=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - sum=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + a: NDArray|None = None, + asrc: str|None = None, + b: NDArray|None = None, + bsrc: str|None = None, + c: NDArray|None = None, + cliponaxis: bool|None = None, + connectgaps: bool|None = None, + csrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + sum: int|float|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -17453,46 +17456,46 @@ def add_scatterternary(self, return self.add_trace( new_trace, row=row, col=col) def add_splom(self, - customdata=None, - customdatasrc=None, - diagonal=None, - dimensions=None, - dimensiondefaults=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - showlowerhalf=None, - showupperhalf=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - xaxes=None, - xhoverformat=None, - yaxes=None, - yhoverformat=None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + diagonal: None|None = None, + dimensions: None|None = None, + dimensiondefaults: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + showlowerhalf: bool|None = None, + showupperhalf: bool|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + xaxes: list|None = None, + xhoverformat: str|None = None, + yaxes: list|None = None, + yhoverformat: str|None = None, row=None, col=None, **kwargs @@ -17800,65 +17803,65 @@ def add_splom(self, return self.add_trace( new_trace, row=row, col=col) def add_streamtube(self, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - maxdisplayed=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - sizeref=None, - starts=None, - stream=None, - text=None, - u=None, - uhoverformat=None, - uid=None, - uirevision=None, - usrc=None, - v=None, - vhoverformat=None, - visible=None, - vsrc=None, - w=None, - whoverformat=None, - wsrc=None, - x=None, - xhoverformat=None, - xsrc=None, - y=None, - yhoverformat=None, - ysrc=None, - z=None, - zhoverformat=None, - zsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + maxdisplayed: int|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + sizeref: int|float|None = None, + starts: None|None = None, + stream: None|None = None, + text: str|None = None, + u: NDArray|None = None, + uhoverformat: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + usrc: str|None = None, + v: NDArray|None = None, + vhoverformat: str|None = None, + visible: Any|None = None, + vsrc: str|None = None, + w: NDArray|None = None, + whoverformat: str|None = None, + wsrc: str|None = None, + x: NDArray|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -18276,54 +18279,54 @@ def add_streamtube(self, return self.add_trace( new_trace, row=row, col=col) def add_sunburst(self, - branchvalues=None, - count=None, - customdata=None, - customdatasrc=None, - domain=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextfont=None, - insidetextorientation=None, - labels=None, - labelssrc=None, - leaf=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, - marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - outsidetextfont=None, - parents=None, - parentssrc=None, - root=None, - rotation=None, - sort=None, - stream=None, - text=None, - textfont=None, - textinfo=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + branchvalues: Any|None = None, + count: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextfont: None|None = None, + insidetextorientation: Any|None = None, + labels: NDArray|None = None, + labelssrc: str|None = None, + leaf: None|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + level: Any|None = None, + marker: None|None = None, + maxdepth: int|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + outsidetextfont: None|None = None, + parents: NDArray|None = None, + parentssrc: str|None = None, + root: None|None = None, + rotation: int|float|None = None, + sort: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -18666,64 +18669,64 @@ def add_sunburst(self, return self.add_trace( new_trace, row=row, col=col) def add_surface(self, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colorscale=None, - connectgaps=None, - contours=None, - customdata=None, - customdatasrc=None, - hidesurface=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - opacityscale=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - stream=None, - surfacecolor=None, - surfacecolorsrc=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - z=None, - zcalendar=None, - zhoverformat=None, - zsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + connectgaps: bool|None = None, + contours: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + hidesurface: bool|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + opacityscale: Any|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + surfacecolor: NDArray|None = None, + surfacecolorsrc: str|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zcalendar: Any|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -19134,31 +19137,31 @@ def add_surface(self, return self.add_trace( new_trace, row=row, col=col) def add_table(self, - cells=None, - columnorder=None, - columnordersrc=None, - columnwidth=None, - columnwidthsrc=None, - customdata=None, - customdatasrc=None, - domain=None, - header=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - ids=None, - idssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - stream=None, - uid=None, - uirevision=None, - visible=None, + cells: None|None = None, + columnorder: NDArray|None = None, + columnordersrc: str|None = None, + columnwidth: int|float|None = None, + columnwidthsrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + domain: None|None = None, + header: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + stream: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -19343,54 +19346,54 @@ def add_table(self, return self.add_trace( new_trace, row=row, col=col) def add_treemap(self, - branchvalues=None, - count=None, - customdata=None, - customdatasrc=None, - domain=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextfont=None, - labels=None, - labelssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, - marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - outsidetextfont=None, - parents=None, - parentssrc=None, - pathbar=None, - root=None, - sort=None, - stream=None, - text=None, - textfont=None, - textinfo=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - tiling=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + branchvalues: Any|None = None, + count: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextfont: None|None = None, + labels: NDArray|None = None, + labelssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + level: Any|None = None, + marker: None|None = None, + maxdepth: int|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + outsidetextfont: None|None = None, + parents: NDArray|None = None, + parentssrc: str|None = None, + pathbar: None|None = None, + root: None|None = None, + sort: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + tiling: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: Any|None = None, row=None, col=None, **kwargs @@ -19726,67 +19729,67 @@ def add_treemap(self, return self.add_trace( new_trace, row=row, col=col) def add_violin(self, - alignmentgroup=None, - bandwidth=None, - box=None, - customdata=None, - customdatasrc=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - jitter=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meanline=None, - meta=None, - metasrc=None, - name=None, - offsetgroup=None, - opacity=None, - orientation=None, - pointpos=None, - points=None, - quartilemethod=None, - scalegroup=None, - scalemode=None, - selected=None, - selectedpoints=None, - showlegend=None, - side=None, - span=None, - spanmode=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - width=None, - x=None, - x0=None, - xaxis=None, - xhoverformat=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - yhoverformat=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + bandwidth: int|float|None = None, + box: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + jitter: int|float|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meanline: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + offsetgroup: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + pointpos: int|float|None = None, + points: Any|None = None, + quartilemethod: Any|None = None, + scalegroup: str|None = None, + scalemode: Any|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + side: Any|None = None, + span: list|None = None, + spanmode: Any|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + width: int|float|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -20240,67 +20243,67 @@ def add_violin(self, return self.add_trace( new_trace, row=row, col=col, secondary_y=secondary_y) def add_volume(self, - autocolorscale=None, - caps=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colorscale=None, - contour=None, - customdata=None, - customdatasrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - isomax=None, - isomin=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - opacityscale=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - slices=None, - spaceframe=None, - stream=None, - surface=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - value=None, - valuehoverformat=None, - valuesrc=None, - visible=None, - x=None, - xhoverformat=None, - xsrc=None, - y=None, - yhoverformat=None, - ysrc=None, - z=None, - zhoverformat=None, - zsrc=None, + autocolorscale: bool|None = None, + caps: None|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + contour: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + flatshading: bool|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + isomax: int|float|None = None, + isomin: int|float|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + opacityscale: Any|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + slices: None|None = None, + spaceframe: None|None = None, + stream: None|None = None, + surface: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + value: NDArray|None = None, + valuehoverformat: str|None = None, + valuesrc: str|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, row=None, col=None, **kwargs @@ -20722,79 +20725,79 @@ def add_volume(self, return self.add_trace( new_trace, row=row, col=col) def add_waterfall(self, - alignmentgroup=None, - base=None, - cliponaxis=None, - connector=None, - constraintext=None, - customdata=None, - customdatasrc=None, - decreasing=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - increasing=None, - insidetextanchor=None, - insidetextfont=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - measure=None, - measuresrc=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetgroup=None, - offsetsrc=None, - opacity=None, - orientation=None, - outsidetextfont=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textangle=None, - textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - totals=None, - uid=None, - uirevision=None, - visible=None, - width=None, - widthsrc=None, - x=None, - x0=None, - xaxis=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + base: int|float|None = None, + cliponaxis: bool|None = None, + connector: None|None = None, + constraintext: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + decreasing: None|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + increasing: None|None = None, + insidetextanchor: Any|None = None, + insidetextfont: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + measure: NDArray|None = None, + measuresrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + offset: int|float|None = None, + offsetgroup: str|None = None, + offsetsrc: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + outsidetextfont: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textangle: int|float|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + totals: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + width: int|float|None = None, + widthsrc: str|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + zorder: int|None = None, row=None, col=None, secondary_y=None, @@ -22830,49 +22833,49 @@ def update_annotations( def add_annotation(self, arg=None, - align=None, - arrowcolor=None, - arrowhead=None, - arrowside=None, - arrowsize=None, - arrowwidth=None, - ax=None, - axref=None, - ay=None, - ayref=None, - bgcolor=None, - bordercolor=None, - borderpad=None, - borderwidth=None, - captureevents=None, - clicktoshow=None, - font=None, - height=None, - hoverlabel=None, - hovertext=None, - name=None, - opacity=None, - showarrow=None, - standoff=None, - startarrowhead=None, - startarrowsize=None, - startstandoff=None, - templateitemname=None, - text=None, - textangle=None, - valign=None, - visible=None, - width=None, - x=None, - xanchor=None, - xclick=None, - xref=None, - xshift=None, - y=None, - yanchor=None, - yclick=None, - yref=None, - yshift=None, + align: Any|None = None, + arrowcolor: str|None = None, + arrowhead: int|None = None, + arrowside: Any|None = None, + arrowsize: int|float|None = None, + arrowwidth: int|float|None = None, + ax: Any|None = None, + axref: Any|None = None, + ay: Any|None = None, + ayref: Any|None = None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderpad: int|float|None = None, + borderwidth: int|float|None = None, + captureevents: bool|None = None, + clicktoshow: Any|None = None, + font: None|None = None, + height: int|float|None = None, + hoverlabel: None|None = None, + hovertext: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + showarrow: bool|None = None, + standoff: int|float|None = None, + startarrowhead: int|None = None, + startarrowsize: int|float|None = None, + startstandoff: int|float|None = None, + templateitemname: str|None = None, + text: str|None = None, + textangle: int|float|None = None, + valign: Any|None = None, + visible: bool|None = None, + width: int|float|None = None, + x: Any|None = None, + xanchor: Any|None = None, + xclick: Any|None = None, + xref: Any|None = None, + xshift: int|float|None = None, + y: Any|None = None, + yanchor: Any|None = None, + yclick: Any|None = None, + yref: Any|None = None, + yshift: int|float|None = None, row=None, col=None, secondary_y=None, @@ -23410,21 +23413,21 @@ def update_layout_images( def add_layout_image(self, arg=None, - layer=None, - name=None, - opacity=None, - sizex=None, - sizey=None, - sizing=None, - source=None, - templateitemname=None, - visible=None, - x=None, - xanchor=None, - xref=None, - y=None, - yanchor=None, - yref=None, + layer: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + sizex: int|float|None = None, + sizey: int|float|None = None, + sizing: Any|None = None, + source: str|None = None, + templateitemname: str|None = None, + visible: bool|None = None, + x: Any|None = None, + xanchor: Any|None = None, + xref: Any|None = None, + y: Any|None = None, + yanchor: Any|None = None, + yref: Any|None = None, row=None, col=None, secondary_y=None, @@ -23740,18 +23743,18 @@ def update_selections( def add_selection(self, arg=None, - line=None, - name=None, - opacity=None, - path=None, - templateitemname=None, - type=None, - x0=None, - x1=None, - xref=None, - y0=None, - y1=None, - yref=None, + line: None|None = None, + name: str|None = None, + opacity: int|float|None = None, + path: str|None = None, + templateitemname: str|None = None, + type: Any|None = None, + x0: Any|None = None, + x1: Any|None = None, + xref: Any|None = None, + y0: Any|None = None, + y1: Any|None = None, + yref: Any|None = None, row=None, col=None, secondary_y=None, @@ -24049,38 +24052,38 @@ def update_shapes( def add_shape(self, arg=None, - editable=None, - fillcolor=None, - fillrule=None, - label=None, - layer=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - name=None, - opacity=None, - path=None, - showlegend=None, - templateitemname=None, - type=None, - visible=None, - x0=None, - x0shift=None, - x1=None, - x1shift=None, - xanchor=None, - xref=None, - xsizemode=None, - y0=None, - y0shift=None, - y1=None, - y1shift=None, - yanchor=None, - yref=None, - ysizemode=None, + editable: bool|None = None, + fillcolor: str|None = None, + fillrule: Any|None = None, + label: None|None = None, + layer: Any|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + name: str|None = None, + opacity: int|float|None = None, + path: str|None = None, + showlegend: bool|None = None, + templateitemname: str|None = None, + type: Any|None = None, + visible: Any|None = None, + x0: Any|None = None, + x0shift: int|float|None = None, + x1: Any|None = None, + x1shift: int|float|None = None, + xanchor: Any|None = None, + xref: Any|None = None, + xsizemode: Any|None = None, + y0: Any|None = None, + y0shift: int|float|None = None, + y1: Any|None = None, + y1shift: int|float|None = None, + yanchor: Any|None = None, + yref: Any|None = None, + ysizemode: Any|None = None, row=None, col=None, secondary_y=None, diff --git a/plotly/graph_objs/_frame.py b/plotly/graph_objs/_frame.py index f7176e434a..a4838bd986 100644 --- a/plotly/graph_objs/_frame.py +++ b/plotly/graph_objs/_frame.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseFrameHierarchyType as _BaseFrameHierarchyType import copy as _copy @@ -163,12 +166,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - baseframe=None, - data=None, - group=None, - layout=None, - name=None, - traces=None, + baseframe: str|None = None, + data: Any|None = None, + group: str|None = None, + layout: Any|None = None, + name: str|None = None, + traces: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_funnel.py b/plotly/graph_objs/_funnel.py index 671782d46a..9db28a3982 100644 --- a/plotly/graph_objs/_funnel.py +++ b/plotly/graph_objs/_funnel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -116,7 +119,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -203,7 +206,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -291,7 +294,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -338,7 +341,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -381,7 +384,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -612,7 +615,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -861,7 +864,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -963,7 +966,7 @@ def textposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textposition'] @@ -1040,7 +1043,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1179,7 +1182,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1363,7 +1366,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -1925,72 +1928,72 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - alignmentgroup=None, - cliponaxis=None, - connector=None, - constraintext=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, - insidetextfont=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetgroup=None, - opacity=None, - orientation=None, - outsidetextfont=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textangle=None, - textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - visible=None, - width=None, - x=None, - x0=None, - xaxis=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + cliponaxis: bool|None = None, + connector: None|None = None, + constraintext: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextanchor: Any|None = None, + insidetextfont: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + offset: int|float|None = None, + offsetgroup: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + outsidetextfont: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textangle: int|float|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + width: int|float|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + zorder: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_funnelarea.py b/plotly/graph_objs/_funnelarea.py index ea56fb2d7a..5af7868d4e 100644 --- a/plotly/graph_objs/_funnelarea.py +++ b/plotly/graph_objs/_funnelarea.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -67,7 +70,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -155,7 +158,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -243,7 +246,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -290,7 +293,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -333,7 +336,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -422,7 +425,7 @@ def labels(self): Returns ------- - numpy.ndarray + NDArray """ return self['labels'] @@ -608,7 +611,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -759,7 +762,7 @@ def text(self): Returns ------- - numpy.ndarray + NDArray """ return self['text'] @@ -827,7 +830,7 @@ def textposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textposition'] @@ -903,7 +906,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1021,7 +1024,7 @@ def values(self): Returns ------- - numpy.ndarray + NDArray """ return self['values'] @@ -1317,52 +1320,52 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - aspectratio=None, - baseratio=None, - customdata=None, - customdatasrc=None, - dlabel=None, - domain=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextfont=None, - label0=None, - labels=None, - labelssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - scalegroup=None, - showlegend=None, - stream=None, - text=None, - textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - title=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + aspectratio: int|float|None = None, + baseratio: int|float|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dlabel: int|float|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextfont: None|None = None, + label0: int|float|None = None, + labels: NDArray|None = None, + labelssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + scalegroup: str|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + title: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_heatmap.py b/plotly/graph_objs/_heatmap.py index d6d7856212..c912efeb41 100644 --- a/plotly/graph_objs/_heatmap.py +++ b/plotly/graph_objs/_heatmap.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -176,7 +179,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -263,7 +266,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -370,7 +373,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -411,7 +414,7 @@ def hovertext(self): Returns ------- - numpy.ndarray + NDArray """ return self['hovertext'] @@ -454,7 +457,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -619,7 +622,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -786,7 +789,7 @@ def text(self): Returns ------- - numpy.ndarray + NDArray """ return self['text'] @@ -981,7 +984,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1233,7 +1236,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -1485,7 +1488,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -2042,77 +2045,77 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - coloraxis=None, - colorbar=None, - colorscale=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoverongaps=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - text=None, - textfont=None, - textsrc=None, - texttemplate=None, - transpose=None, - uid=None, - uirevision=None, - visible=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xgap=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - xtype=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - ygap=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - ytype=None, - z=None, - zauto=None, - zhoverformat=None, - zmax=None, - zmid=None, - zmin=None, - zorder=None, - zsmooth=None, - zsrc=None, + autocolorscale: bool|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoverongaps: bool|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: NDArray|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + transpose: bool|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xgap: int|float|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + xtype: Any|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + ygap: int|float|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + ytype: Any|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zhoverformat: str|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zorder: int|None = None, + zsmooth: Any|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_histogram.py b/plotly/graph_objs/_histogram.py index 01bffa612e..1c72777cae 100644 --- a/plotly/graph_objs/_histogram.py +++ b/plotly/graph_objs/_histogram.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -189,7 +192,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -338,7 +341,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -425,7 +428,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -468,7 +471,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -511,7 +514,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -742,7 +745,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -1032,7 +1035,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1281,7 +1284,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1422,7 +1425,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -1947,72 +1950,72 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - alignmentgroup=None, - autobinx=None, - autobiny=None, - bingroup=None, - cliponaxis=None, - constraintext=None, - cumulative=None, - customdata=None, - customdatasrc=None, - error_x=None, - error_y=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, - insidetextfont=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - nbinsx=None, - nbinsy=None, - offsetgroup=None, - opacity=None, - orientation=None, - outsidetextfont=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textangle=None, - textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - x=None, - xaxis=None, - xbins=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, - ybins=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + autobinx: bool|None = None, + autobiny: bool|None = None, + bingroup: str|None = None, + cliponaxis: bool|None = None, + constraintext: Any|None = None, + cumulative: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + error_x: None|None = None, + error_y: None|None = None, + histfunc: Any|None = None, + histnorm: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextanchor: Any|None = None, + insidetextfont: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + nbinsx: int|None = None, + nbinsy: int|None = None, + offsetgroup: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + outsidetextfont: None|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textangle: int|float|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xbins: None|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yaxis: str|None = None, + ybins: None|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + zorder: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_histogram2d.py b/plotly/graph_objs/_histogram2d.py index 63689c8ffe..937ceccee8 100644 --- a/plotly/graph_objs/_histogram2d.py +++ b/plotly/graph_objs/_histogram2d.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -222,7 +225,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -329,7 +332,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -416,7 +419,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -459,7 +462,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -645,7 +648,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -994,7 +997,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1180,7 +1183,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -1366,7 +1369,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -1897,69 +1900,69 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autobinx=None, - autobiny=None, - autocolorscale=None, - bingroup=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - nbinsx=None, - nbinsy=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - textfont=None, - texttemplate=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xbingroup=None, - xbins=None, - xcalendar=None, - xgap=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, - ybingroup=None, - ybins=None, - ycalendar=None, - ygap=None, - yhoverformat=None, - ysrc=None, - z=None, - zauto=None, - zhoverformat=None, - zmax=None, - zmid=None, - zmin=None, - zsmooth=None, - zsrc=None, + autobinx: bool|None = None, + autobiny: bool|None = None, + autocolorscale: bool|None = None, + bingroup: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + histfunc: Any|None = None, + histnorm: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + nbinsx: int|None = None, + nbinsy: int|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + textfont: None|None = None, + texttemplate: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xbingroup: str|None = None, + xbins: None|None = None, + xcalendar: Any|None = None, + xgap: int|float|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yaxis: str|None = None, + ybingroup: str|None = None, + ybins: None|None = None, + ycalendar: Any|None = None, + ygap: int|float|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zhoverformat: str|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsmooth: Any|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_histogram2dcontour.py b/plotly/graph_objs/_histogram2dcontour.py index e77d45cadd..b8db1d9a6c 100644 --- a/plotly/graph_objs/_histogram2dcontour.py +++ b/plotly/graph_objs/_histogram2dcontour.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -266,7 +269,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -373,7 +376,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -460,7 +463,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -503,7 +506,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -710,7 +713,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -1086,7 +1089,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1252,7 +1255,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -1418,7 +1421,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -1941,70 +1944,70 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autobinx=None, - autobiny=None, - autocolorscale=None, - autocontour=None, - bingroup=None, - coloraxis=None, - colorbar=None, - colorscale=None, - contours=None, - customdata=None, - customdatasrc=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - name=None, - nbinsx=None, - nbinsy=None, - ncontours=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, - stream=None, - textfont=None, - texttemplate=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xbingroup=None, - xbins=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, - ybingroup=None, - ybins=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - z=None, - zauto=None, - zhoverformat=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + autobinx: bool|None = None, + autobiny: bool|None = None, + autocolorscale: bool|None = None, + autocontour: bool|None = None, + bingroup: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + contours: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + histfunc: Any|None = None, + histnorm: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + nbinsx: int|None = None, + nbinsy: int|None = None, + ncontours: int|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + textfont: None|None = None, + texttemplate: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xbingroup: str|None = None, + xbins: None|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yaxis: str|None = None, + ybingroup: str|None = None, + ybins: None|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zauto: bool|None = None, + zhoverformat: str|None = None, + zmax: int|float|None = None, + zmid: int|float|None = None, + zmin: int|float|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_icicle.py b/plotly/graph_objs/_icicle.py index 07b8bdd557..883ae919e7 100644 --- a/plotly/graph_objs/_icicle.py +++ b/plotly/graph_objs/_icicle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -77,7 +80,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -145,7 +148,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -234,7 +237,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -281,7 +284,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -324,7 +327,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -387,7 +390,7 @@ def labels(self): Returns ------- - numpy.ndarray + NDArray """ return self['labels'] @@ -614,7 +617,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -728,7 +731,7 @@ def parents(self): Returns ------- - numpy.ndarray + NDArray """ return self['parents'] @@ -856,7 +859,7 @@ def text(self): Returns ------- - numpy.ndarray + NDArray """ return self['text'] @@ -981,7 +984,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1099,7 +1102,7 @@ def values(self): Returns ------- - numpy.ndarray + NDArray """ return self['values'] @@ -1418,55 +1421,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - branchvalues=None, - count=None, - customdata=None, - customdatasrc=None, - domain=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextfont=None, - labels=None, - labelssrc=None, - leaf=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, - marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - outsidetextfont=None, - parents=None, - parentssrc=None, - pathbar=None, - root=None, - sort=None, - stream=None, - text=None, - textfont=None, - textinfo=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - tiling=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + branchvalues: Any|None = None, + count: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextfont: None|None = None, + labels: NDArray|None = None, + labelssrc: str|None = None, + leaf: None|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + level: Any|None = None, + marker: None|None = None, + maxdepth: int|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + outsidetextfont: None|None = None, + parents: NDArray|None = None, + parentssrc: str|None = None, + pathbar: None|None = None, + root: None|None = None, + sort: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + tiling: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_image.py b/plotly/graph_objs/_image.py index 5067295a46..f1ae5f0b07 100644 --- a/plotly/graph_objs/_image.py +++ b/plotly/graph_objs/_image.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -51,7 +54,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -138,7 +141,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -226,7 +229,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -267,7 +270,7 @@ def hovertext(self): Returns ------- - numpy.ndarray + NDArray """ return self['hovertext'] @@ -310,7 +313,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -452,7 +455,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -577,7 +580,7 @@ def text(self): Returns ------- - numpy.ndarray + NDArray """ return self['text'] @@ -791,7 +794,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -1157,45 +1160,45 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - colormodel=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - source=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - visible=None, - x0=None, - xaxis=None, - y0=None, - yaxis=None, - z=None, - zmax=None, - zmin=None, - zorder=None, - zsmooth=None, - zsrc=None, + colormodel: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: NDArray|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + source: str|None = None, + stream: None|None = None, + text: NDArray|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x0: Any|None = None, + xaxis: str|None = None, + y0: Any|None = None, + yaxis: str|None = None, + z: NDArray|None = None, + zmax: list|None = None, + zmin: list|None = None, + zorder: int|None = None, + zsmooth: Any|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_indicator.py b/plotly/graph_objs/_indicator.py index b3c37daf81..19c4560d2f 100644 --- a/plotly/graph_objs/_indicator.py +++ b/plotly/graph_objs/_indicator.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -50,7 +53,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -158,7 +161,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -300,7 +303,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -664,29 +667,29 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - customdata=None, - customdatasrc=None, - delta=None, - domain=None, - gauge=None, - ids=None, - idssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - mode=None, - name=None, - number=None, - stream=None, - title=None, - uid=None, - uirevision=None, - value=None, - visible=None, + align: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + delta: None|None = None, + domain: None|None = None, + gauge: None|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + number: None|None = None, + stream: None|None = None, + title: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + value: int|float|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_isosurface.py b/plotly/graph_objs/_isosurface.py index 0f6ac8a7c6..086fc367b3 100644 --- a/plotly/graph_objs/_isosurface.py +++ b/plotly/graph_objs/_isosurface.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -282,7 +285,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -351,7 +354,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -437,7 +440,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -480,7 +483,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -523,7 +526,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -770,7 +773,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -1034,7 +1037,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1129,7 +1132,7 @@ def value(self): Returns ------- - numpy.ndarray + NDArray """ return self['value'] @@ -1217,7 +1220,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1288,7 +1291,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -1359,7 +1362,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -1743,66 +1746,66 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - caps=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colorscale=None, - contour=None, - customdata=None, - customdatasrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - isomax=None, - isomin=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - slices=None, - spaceframe=None, - stream=None, - surface=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - value=None, - valuehoverformat=None, - valuesrc=None, - visible=None, - x=None, - xhoverformat=None, - xsrc=None, - y=None, - yhoverformat=None, - ysrc=None, - z=None, - zhoverformat=None, - zsrc=None, + autocolorscale: bool|None = None, + caps: None|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + contour: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + flatshading: bool|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + isomax: int|float|None = None, + isomin: int|float|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + slices: None|None = None, + spaceframe: None|None = None, + stream: None|None = None, + surface: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + value: NDArray|None = None, + valuehoverformat: str|None = None, + valuesrc: str|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_layout.py b/plotly/graph_objs/_layout.py index ce6487b3f4..0c0db1ddf2 100644 --- a/plotly/graph_objs/_layout.py +++ b/plotly/graph_objs/_layout.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutType as _BaseLayoutType import copy as _copy @@ -896,7 +899,7 @@ def hiddenlabels(self): Returns ------- - numpy.ndarray + NDArray """ return self['hiddenlabels'] @@ -1227,7 +1230,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -2762,101 +2765,101 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - activeselection=None, - activeshape=None, - annotations=None, - annotationdefaults=None, - autosize=None, - autotypenumbers=None, - barcornerradius=None, - bargap=None, - bargroupgap=None, - barmode=None, - barnorm=None, - boxgap=None, - boxgroupgap=None, - boxmode=None, - calendar=None, - clickmode=None, - coloraxis=None, - colorscale=None, - colorway=None, - computed=None, - datarevision=None, - dragmode=None, - editrevision=None, - extendfunnelareacolors=None, - extendiciclecolors=None, - extendpiecolors=None, - extendsunburstcolors=None, - extendtreemapcolors=None, - font=None, - funnelareacolorway=None, - funnelgap=None, - funnelgroupgap=None, - funnelmode=None, - geo=None, - grid=None, - height=None, - hiddenlabels=None, - hiddenlabelssrc=None, - hidesources=None, - hoverdistance=None, - hoverlabel=None, - hovermode=None, - hoversubplots=None, - iciclecolorway=None, - images=None, - imagedefaults=None, - legend=None, - map=None, - mapbox=None, - margin=None, - meta=None, - metasrc=None, - minreducedheight=None, - minreducedwidth=None, - modebar=None, - newselection=None, - newshape=None, - paper_bgcolor=None, - piecolorway=None, - plot_bgcolor=None, - polar=None, - scattergap=None, - scattermode=None, - scene=None, - selectdirection=None, - selectionrevision=None, - selections=None, - selectiondefaults=None, - separators=None, - shapes=None, - shapedefaults=None, - showlegend=None, - sliders=None, - sliderdefaults=None, - smith=None, - spikedistance=None, - sunburstcolorway=None, - template=None, - ternary=None, - title=None, - transition=None, - treemapcolorway=None, - uirevision=None, - uniformtext=None, - updatemenus=None, - updatemenudefaults=None, - violingap=None, - violingroupgap=None, - violinmode=None, - waterfallgap=None, - waterfallgroupgap=None, - waterfallmode=None, - width=None, - xaxis=None, - yaxis=None, + activeselection: None|None = None, + activeshape: None|None = None, + annotations: None|None = None, + annotationdefaults: None|None = None, + autosize: bool|None = None, + autotypenumbers: Any|None = None, + barcornerradius: Any|None = None, + bargap: int|float|None = None, + bargroupgap: int|float|None = None, + barmode: Any|None = None, + barnorm: Any|None = None, + boxgap: int|float|None = None, + boxgroupgap: int|float|None = None, + boxmode: Any|None = None, + calendar: Any|None = None, + clickmode: Any|None = None, + coloraxis: None|None = None, + colorscale: None|None = None, + colorway: list|None = None, + computed: Any|None = None, + datarevision: Any|None = None, + dragmode: Any|None = None, + editrevision: Any|None = None, + extendfunnelareacolors: bool|None = None, + extendiciclecolors: bool|None = None, + extendpiecolors: bool|None = None, + extendsunburstcolors: bool|None = None, + extendtreemapcolors: bool|None = None, + font: None|None = None, + funnelareacolorway: list|None = None, + funnelgap: int|float|None = None, + funnelgroupgap: int|float|None = None, + funnelmode: Any|None = None, + geo: None|None = None, + grid: None|None = None, + height: int|float|None = None, + hiddenlabels: NDArray|None = None, + hiddenlabelssrc: str|None = None, + hidesources: bool|None = None, + hoverdistance: int|None = None, + hoverlabel: None|None = None, + hovermode: Any|None = None, + hoversubplots: Any|None = None, + iciclecolorway: list|None = None, + images: None|None = None, + imagedefaults: None|None = None, + legend: None|None = None, + map: None|None = None, + mapbox: None|None = None, + margin: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + minreducedheight: int|float|None = None, + minreducedwidth: int|float|None = None, + modebar: None|None = None, + newselection: None|None = None, + newshape: None|None = None, + paper_bgcolor: str|None = None, + piecolorway: list|None = None, + plot_bgcolor: str|None = None, + polar: None|None = None, + scattergap: int|float|None = None, + scattermode: Any|None = None, + scene: None|None = None, + selectdirection: Any|None = None, + selectionrevision: Any|None = None, + selections: None|None = None, + selectiondefaults: None|None = None, + separators: str|None = None, + shapes: None|None = None, + shapedefaults: None|None = None, + showlegend: bool|None = None, + sliders: None|None = None, + sliderdefaults: None|None = None, + smith: None|None = None, + spikedistance: int|None = None, + sunburstcolorway: list|None = None, + template: None|None = None, + ternary: None|None = None, + title: None|None = None, + transition: None|None = None, + treemapcolorway: list|None = None, + uirevision: Any|None = None, + uniformtext: None|None = None, + updatemenus: None|None = None, + updatemenudefaults: None|None = None, + violingap: int|float|None = None, + violingroupgap: int|float|None = None, + violinmode: Any|None = None, + waterfallgap: int|float|None = None, + waterfallgroupgap: int|float|None = None, + waterfallmode: Any|None = None, + width: int|float|None = None, + xaxis: None|None = None, + yaxis: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_mesh3d.py b/plotly/graph_objs/_mesh3d.py index c17d80d94e..c30d028662 100644 --- a/plotly/graph_objs/_mesh3d.py +++ b/plotly/graph_objs/_mesh3d.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -325,7 +328,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -391,7 +394,7 @@ def facecolor(self): Returns ------- - numpy.ndarray + NDArray """ return self['facecolor'] @@ -460,7 +463,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -546,7 +549,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -589,7 +592,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -636,7 +639,7 @@ def i(self): Returns ------- - numpy.ndarray + NDArray """ return self['i'] @@ -658,7 +661,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -699,7 +702,7 @@ def intensity(self): Returns ------- - numpy.ndarray + NDArray """ return self['intensity'] @@ -787,7 +790,7 @@ def j(self): Returns ------- - numpy.ndarray + NDArray """ return self['j'] @@ -833,7 +836,7 @@ def k(self): Returns ------- - numpy.ndarray + NDArray """ return self['k'] @@ -1040,7 +1043,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -1241,7 +1244,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1339,7 +1342,7 @@ def vertexcolor(self): Returns ------- - numpy.ndarray + NDArray """ return self['vertexcolor'] @@ -1405,7 +1408,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1502,7 +1505,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -1599,7 +1602,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -2079,76 +2082,76 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - alphahull=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - contour=None, - customdata=None, - customdatasrc=None, - delaunayaxis=None, - facecolor=None, - facecolorsrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - i=None, - ids=None, - idssrc=None, - intensity=None, - intensitymode=None, - intensitysrc=None, - isrc=None, - j=None, - jsrc=None, - k=None, - ksrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - vertexcolor=None, - vertexcolorsrc=None, - visible=None, - x=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - z=None, - zcalendar=None, - zhoverformat=None, - zsrc=None, + alphahull: int|float|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + contour: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + delaunayaxis: Any|None = None, + facecolor: NDArray|None = None, + facecolorsrc: str|None = None, + flatshading: bool|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + i: NDArray|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + intensity: NDArray|None = None, + intensitymode: Any|None = None, + intensitysrc: str|None = None, + isrc: str|None = None, + j: NDArray|None = None, + jsrc: str|None = None, + k: NDArray|None = None, + ksrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + vertexcolor: NDArray|None = None, + vertexcolorsrc: str|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zcalendar: Any|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_ohlc.py b/plotly/graph_objs/_ohlc.py index c1ae3ae3a3..6db7e8d2dd 100644 --- a/plotly/graph_objs/_ohlc.py +++ b/plotly/graph_objs/_ohlc.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -24,7 +27,7 @@ def close(self): Returns ------- - numpy.ndarray + NDArray """ return self['close'] @@ -67,7 +70,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -129,7 +132,7 @@ def high(self): Returns ------- - numpy.ndarray + NDArray """ return self['high'] @@ -175,7 +178,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -239,7 +242,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -282,7 +285,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -481,7 +484,7 @@ def low(self): Returns ------- - numpy.ndarray + NDArray """ return self['low'] @@ -529,7 +532,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -611,7 +614,7 @@ def open(self): Returns ------- - numpy.ndarray + NDArray """ return self['open'] @@ -722,7 +725,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -862,7 +865,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1353,55 +1356,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - close=None, - closesrc=None, - customdata=None, - customdatasrc=None, - decreasing=None, - high=None, - highsrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - increasing=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - low=None, - lowsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - open=None, - opensrc=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textsrc=None, - tickwidth=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - yaxis=None, - yhoverformat=None, - zorder=None, + close: NDArray|None = None, + closesrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + decreasing: None|None = None, + high: NDArray|None = None, + highsrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + increasing: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + low: NDArray|None = None, + lowsrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + open: NDArray|None = None, + opensrc: str|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + tickwidth: int|float|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + yaxis: str|None = None, + yhoverformat: str|None = None, + zorder: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_parcats.py b/plotly/graph_objs/_parcats.py index 3c8a8fd309..73ba61bc2e 100644 --- a/plotly/graph_objs/_parcats.py +++ b/plotly/graph_objs/_parcats.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -72,7 +75,7 @@ def counts(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['counts'] @@ -375,7 +378,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -726,29 +729,29 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - arrangement=None, - bundlecolors=None, - counts=None, - countssrc=None, - dimensions=None, - dimensiondefaults=None, - domain=None, - hoverinfo=None, - hoveron=None, - hovertemplate=None, - labelfont=None, - legendgrouptitle=None, - legendwidth=None, - line=None, - meta=None, - metasrc=None, - name=None, - sortpaths=None, - stream=None, - tickfont=None, - uid=None, - uirevision=None, - visible=None, + arrangement: Any|None = None, + bundlecolors: bool|None = None, + counts: int|float|None = None, + countssrc: str|None = None, + dimensions: None|None = None, + dimensiondefaults: None|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + labelfont: None|None = None, + legendgrouptitle: None|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + sortpaths: Any|None = None, + stream: None|None = None, + tickfont: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_parcoords.py b/plotly/graph_objs/_parcoords.py index 852bc72df0..9212087569 100644 --- a/plotly/graph_objs/_parcoords.py +++ b/plotly/graph_objs/_parcoords.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -27,7 +30,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -141,7 +144,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -376,7 +379,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -728,31 +731,31 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - customdata=None, - customdatasrc=None, - dimensions=None, - dimensiondefaults=None, - domain=None, - ids=None, - idssrc=None, - labelangle=None, - labelfont=None, - labelside=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - meta=None, - metasrc=None, - name=None, - rangefont=None, - stream=None, - tickfont=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dimensions: None|None = None, + dimensiondefaults: None|None = None, + domain: None|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + labelangle: int|float|None = None, + labelfont: None|None = None, + labelside: Any|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + rangefont: None|None = None, + stream: None|None = None, + tickfont: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_pie.py b/plotly/graph_objs/_pie.py index 036c2aba41..8275337df5 100644 --- a/plotly/graph_objs/_pie.py +++ b/plotly/graph_objs/_pie.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -47,7 +50,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -178,7 +181,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -266,7 +269,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -313,7 +316,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -356,7 +359,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -473,7 +476,7 @@ def labels(self): Returns ------- - numpy.ndarray + NDArray """ return self['labels'] @@ -659,7 +662,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -768,7 +771,7 @@ def pull(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['pull'] @@ -921,7 +924,7 @@ def text(self): Returns ------- - numpy.ndarray + NDArray """ return self['text'] @@ -989,7 +992,7 @@ def textposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textposition'] @@ -1065,7 +1068,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1183,7 +1186,7 @@ def values(self): Returns ------- - numpy.ndarray + NDArray """ return self['values'] @@ -1510,59 +1513,59 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - automargin=None, - customdata=None, - customdatasrc=None, - direction=None, - dlabel=None, - domain=None, - hole=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextfont=None, - insidetextorientation=None, - label0=None, - labels=None, - labelssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - outsidetextfont=None, - pull=None, - pullsrc=None, - rotation=None, - scalegroup=None, - showlegend=None, - sort=None, - stream=None, - text=None, - textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - title=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + automargin: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + direction: Any|None = None, + dlabel: int|float|None = None, + domain: None|None = None, + hole: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextfont: None|None = None, + insidetextorientation: Any|None = None, + label0: int|float|None = None, + labels: NDArray|None = None, + labelssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + outsidetextfont: None|None = None, + pull: int|float|None = None, + pullsrc: str|None = None, + rotation: int|float|None = None, + scalegroup: str|None = None, + showlegend: bool|None = None, + sort: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + title: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_sankey.py b/plotly/graph_objs/_sankey.py index 8fad0af7f8..9ed7b8f2af 100644 --- a/plotly/graph_objs/_sankey.py +++ b/plotly/graph_objs/_sankey.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -54,7 +57,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -166,7 +169,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -331,7 +334,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -763,32 +766,32 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - arrangement=None, - customdata=None, - customdatasrc=None, - domain=None, - hoverinfo=None, - hoverlabel=None, - ids=None, - idssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - link=None, - meta=None, - metasrc=None, - name=None, - node=None, - orientation=None, - selectedpoints=None, - stream=None, - textfont=None, - uid=None, - uirevision=None, - valueformat=None, - valuesuffix=None, - visible=None, + arrangement: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoverlabel: None|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + link: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + node: None|None = None, + orientation: Any|None = None, + selectedpoints: Any|None = None, + stream: None|None = None, + textfont: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + valueformat: str|None = None, + valuesuffix: str|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_scatter.py b/plotly/graph_objs/_scatter.py index 4e202cd2ca..2cbb024cc3 100644 --- a/plotly/graph_objs/_scatter.py +++ b/plotly/graph_objs/_scatter.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -94,7 +97,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -367,7 +370,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -478,7 +481,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -525,7 +528,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -568,7 +571,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -775,7 +778,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -1089,7 +1092,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1137,7 +1140,7 @@ def textposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textposition'] @@ -1211,7 +1214,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1351,7 +1354,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1559,7 +1562,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -2210,80 +2213,80 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - alignmentgroup=None, - cliponaxis=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - error_x=None, - error_y=None, - fill=None, - fillcolor=None, - fillgradient=None, - fillpattern=None, - groupnorm=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - offsetgroup=None, - opacity=None, - orientation=None, - selected=None, - selectedpoints=None, - showlegend=None, - stackgaps=None, - stackgroup=None, - stream=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + cliponaxis: bool|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + error_x: None|None = None, + error_y: None|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + fillgradient: None|None = None, + fillpattern: None|None = None, + groupnorm: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + offsetgroup: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stackgaps: Any|None = None, + stackgroup: str|None = None, + stream: None|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + zorder: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_scatter3d.py b/plotly/graph_objs/_scatter3d.py index 1f7ac8cb1b..807a13bd32 100644 --- a/plotly/graph_objs/_scatter3d.py +++ b/plotly/graph_objs/_scatter3d.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -48,7 +51,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -158,7 +161,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -244,7 +247,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -291,7 +294,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -334,7 +337,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -541,7 +544,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -793,7 +796,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -841,7 +844,7 @@ def textposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textposition'] @@ -915,7 +918,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1034,7 +1037,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1129,7 +1132,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -1224,7 +1227,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -1607,61 +1610,61 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - error_x=None, - error_y=None, - error_z=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - projection=None, - scene=None, - showlegend=None, - stream=None, - surfaceaxis=None, - surfacecolor=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - z=None, - zcalendar=None, - zhoverformat=None, - zsrc=None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + error_x: None|None = None, + error_y: None|None = None, + error_z: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + projection: None|None = None, + scene: str|None = None, + showlegend: bool|None = None, + stream: None|None = None, + surfaceaxis: Any|None = None, + surfacecolor: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zcalendar: Any|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_scattercarpet.py b/plotly/graph_objs/_scattercarpet.py index 56fd53e35d..a863ef0d2a 100644 --- a/plotly/graph_objs/_scattercarpet.py +++ b/plotly/graph_objs/_scattercarpet.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -24,7 +27,7 @@ def a(self): Returns ------- - numpy.ndarray + NDArray """ return self['a'] @@ -64,7 +67,7 @@ def b(self): Returns ------- - numpy.ndarray + NDArray """ return self['b'] @@ -151,7 +154,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -253,7 +256,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -364,7 +367,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -411,7 +414,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -454,7 +457,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -661,7 +664,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -865,7 +868,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -913,7 +916,7 @@ def textposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textposition'] @@ -989,7 +992,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1468,56 +1471,56 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - a=None, - asrc=None, - b=None, - bsrc=None, - carpet=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - xaxis=None, - yaxis=None, - zorder=None, + a: NDArray|None = None, + asrc: str|None = None, + b: NDArray|None = None, + bsrc: str|None = None, + carpet: str|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + xaxis: str|None = None, + yaxis: str|None = None, + zorder: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_scattergeo.py b/plotly/graph_objs/_scattergeo.py index 3ea9462321..f3e75c0e7c 100644 --- a/plotly/graph_objs/_scattergeo.py +++ b/plotly/graph_objs/_scattergeo.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -48,7 +51,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -217,7 +220,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -303,7 +306,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -351,7 +354,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -394,7 +397,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -434,7 +437,7 @@ def lat(self): Returns ------- - numpy.ndarray + NDArray """ return self['lat'] @@ -639,7 +642,7 @@ def locations(self): Returns ------- - numpy.ndarray + NDArray """ return self['locations'] @@ -680,7 +683,7 @@ def lon(self): Returns ------- - numpy.ndarray + NDArray """ return self['lon'] @@ -749,7 +752,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -954,7 +957,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1002,7 +1005,7 @@ def textposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textposition'] @@ -1078,7 +1081,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1489,57 +1492,57 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - fill=None, - fillcolor=None, - geo=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - locationmode=None, - locations=None, - locationssrc=None, - lon=None, - lonsrc=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + featureidkey: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + geo: str|None = None, + geojson: Any|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + lat: NDArray|None = None, + latsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + locationmode: Any|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + lon: NDArray|None = None, + lonsrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_scattergl.py b/plotly/graph_objs/_scattergl.py index 45303c7a50..091d0c1534 100644 --- a/plotly/graph_objs/_scattergl.py +++ b/plotly/graph_objs/_scattergl.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -48,7 +51,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -243,7 +246,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -329,7 +332,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -376,7 +379,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -419,7 +422,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -626,7 +629,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -825,7 +828,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -873,7 +876,7 @@ def textposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textposition'] @@ -947,7 +950,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1087,7 +1090,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1295,7 +1298,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -1842,69 +1845,69 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - error_x=None, - error_y=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - x=None, - x0=None, - xaxis=None, - xcalendar=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - ycalendar=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + error_x: None|None = None, + error_y: None|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_scattermap.py b/plotly/graph_objs/_scattermap.py index 8e58d60dcf..6d3f077e86 100644 --- a/plotly/graph_objs/_scattermap.py +++ b/plotly/graph_objs/_scattermap.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -93,7 +96,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -189,7 +192,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -275,7 +278,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -322,7 +325,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -365,7 +368,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -405,7 +408,7 @@ def lat(self): Returns ------- - numpy.ndarray + NDArray """ return self['lat'] @@ -583,7 +586,7 @@ def lon(self): Returns ------- - numpy.ndarray + NDArray """ return self['lon'] @@ -652,7 +655,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -879,7 +882,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -983,7 +986,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1371,53 +1374,53 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - below=None, - cluster=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - lon=None, - lonsrc=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + below: str|None = None, + cluster: None|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + lat: NDArray|None = None, + latsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + lon: NDArray|None = None, + lonsrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_scattermapbox.py b/plotly/graph_objs/_scattermapbox.py index 2ae65018f2..a1293a348b 100644 --- a/plotly/graph_objs/_scattermapbox.py +++ b/plotly/graph_objs/_scattermapbox.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy from warnings import warn @@ -95,7 +98,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -191,7 +194,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -277,7 +280,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -324,7 +327,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -367,7 +370,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -407,7 +410,7 @@ def lat(self): Returns ------- - numpy.ndarray + NDArray """ return self['lat'] @@ -585,7 +588,7 @@ def lon(self): Returns ------- - numpy.ndarray + NDArray """ return self['lon'] @@ -654,7 +657,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -885,7 +888,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -989,7 +992,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1382,53 +1385,53 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - below=None, - cluster=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - lon=None, - lonsrc=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + below: str|None = None, + cluster: None|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + lat: NDArray|None = None, + latsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + lon: NDArray|None = None, + lonsrc: str|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_scatterpolar.py b/plotly/graph_objs/_scatterpolar.py index 6588f99333..6d343e2a0b 100644 --- a/plotly/graph_objs/_scatterpolar.py +++ b/plotly/graph_objs/_scatterpolar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -71,7 +74,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -215,7 +218,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -326,7 +329,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -373,7 +376,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -416,7 +419,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -623,7 +626,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -733,7 +736,7 @@ def r(self): Returns ------- - numpy.ndarray + NDArray """ return self['r'] @@ -913,7 +916,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -961,7 +964,7 @@ def textposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textposition'] @@ -1037,7 +1040,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1078,7 +1081,7 @@ def theta(self): Returns ------- - numpy.ndarray + NDArray """ return self['theta'] @@ -1537,59 +1540,59 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - cliponaxis=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - dr=None, - dtheta=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - r=None, - r0=None, - rsrc=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - theta=None, - theta0=None, - thetasrc=None, - thetaunit=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + cliponaxis: bool|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dr: int|float|None = None, + dtheta: int|float|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + r: NDArray|None = None, + r0: Any|None = None, + rsrc: str|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + theta: NDArray|None = None, + theta0: Any|None = None, + thetasrc: str|None = None, + thetaunit: Any|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_scatterpolargl.py b/plotly/graph_objs/_scatterpolargl.py index 6a440653e0..16a71233e9 100644 --- a/plotly/graph_objs/_scatterpolargl.py +++ b/plotly/graph_objs/_scatterpolargl.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -48,7 +51,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -203,7 +206,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -289,7 +292,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -336,7 +339,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -379,7 +382,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -586,7 +589,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -696,7 +699,7 @@ def r(self): Returns ------- - numpy.ndarray + NDArray """ return self['r'] @@ -876,7 +879,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -924,7 +927,7 @@ def textposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textposition'] @@ -1000,7 +1003,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1041,7 +1044,7 @@ def theta(self): Returns ------- - numpy.ndarray + NDArray """ return self['theta'] @@ -1500,57 +1503,57 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - dr=None, - dtheta=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - r=None, - r0=None, - rsrc=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - theta=None, - theta0=None, - thetasrc=None, - thetaunit=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + dr: int|float|None = None, + dtheta: int|float|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + r: NDArray|None = None, + r0: Any|None = None, + rsrc: str|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + theta: NDArray|None = None, + theta0: Any|None = None, + thetasrc: str|None = None, + thetaunit: Any|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_scattersmith.py b/plotly/graph_objs/_scattersmith.py index 5355c3239a..5475cf3d4f 100644 --- a/plotly/graph_objs/_scattersmith.py +++ b/plotly/graph_objs/_scattersmith.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -71,7 +74,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -173,7 +176,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -284,7 +287,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -331,7 +334,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -374,7 +377,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -416,7 +419,7 @@ def imag(self): Returns ------- - numpy.ndarray + NDArray """ return self['imag'] @@ -623,7 +626,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -734,7 +737,7 @@ def real(self): Returns ------- - numpy.ndarray + NDArray """ return self['real'] @@ -893,7 +896,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -941,7 +944,7 @@ def textposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textposition'] @@ -1017,7 +1020,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1421,54 +1424,54 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - cliponaxis=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - imag=None, - imagsrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - real=None, - realsrc=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + cliponaxis: bool|None = None, + connectgaps: bool|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + imag: NDArray|None = None, + imagsrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + real: NDArray|None = None, + realsrc: str|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_scatterternary.py b/plotly/graph_objs/_scatterternary.py index 7bdc4e7074..3917d6a3ca 100644 --- a/plotly/graph_objs/_scatterternary.py +++ b/plotly/graph_objs/_scatterternary.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -27,7 +30,7 @@ def a(self): Returns ------- - numpy.ndarray + NDArray """ return self['a'] @@ -70,7 +73,7 @@ def b(self): Returns ------- - numpy.ndarray + NDArray """ return self['b'] @@ -113,7 +116,7 @@ def c(self): Returns ------- - numpy.ndarray + NDArray """ return self['c'] @@ -200,7 +203,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -302,7 +305,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -413,7 +416,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -460,7 +463,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -503,7 +506,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -710,7 +713,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -963,7 +966,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1011,7 +1014,7 @@ def textposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textposition'] @@ -1087,7 +1090,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1511,57 +1514,57 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - a=None, - asrc=None, - b=None, - bsrc=None, - c=None, - cliponaxis=None, - connectgaps=None, - csrc=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - stream=None, - subplot=None, - sum=None, - text=None, - textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, + a: NDArray|None = None, + asrc: str|None = None, + b: NDArray|None = None, + bsrc: str|None = None, + c: NDArray|None = None, + cliponaxis: bool|None = None, + connectgaps: bool|None = None, + csrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fill: Any|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + mode: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + subplot: str|None = None, + sum: int|float|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_splom.py b/plotly/graph_objs/_splom.py index 12416dcf79..6def38ba64 100644 --- a/plotly/graph_objs/_splom.py +++ b/plotly/graph_objs/_splom.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -27,7 +30,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -141,7 +144,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -227,7 +230,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -270,7 +273,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -313,7 +316,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -499,7 +502,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -715,7 +718,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1204,46 +1207,46 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - customdata=None, - customdatasrc=None, - diagonal=None, - dimensions=None, - dimensiondefaults=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - selected=None, - selectedpoints=None, - showlegend=None, - showlowerhalf=None, - showupperhalf=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - xaxes=None, - xhoverformat=None, - yaxes=None, - yhoverformat=None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + diagonal: None|None = None, + dimensions: None|None = None, + dimensiondefaults: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + marker: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + showlowerhalf: bool|None = None, + showupperhalf: bool|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + xaxes: list|None = None, + xhoverformat: str|None = None, + yaxes: list|None = None, + yhoverformat: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_streamtube.py b/plotly/graph_objs/_streamtube.py index f19dbd9004..9523ba2eed 100644 --- a/plotly/graph_objs/_streamtube.py +++ b/plotly/graph_objs/_streamtube.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -243,7 +246,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -290,7 +293,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -379,7 +382,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -443,7 +446,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -671,7 +674,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -935,7 +938,7 @@ def u(self): Returns ------- - numpy.ndarray + NDArray """ return self['u'] @@ -1055,7 +1058,7 @@ def v(self): Returns ------- - numpy.ndarray + NDArray """ return self['v'] @@ -1143,7 +1146,7 @@ def w(self): Returns ------- - numpy.ndarray + NDArray """ return self['w'] @@ -1208,7 +1211,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1279,7 +1282,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -1350,7 +1353,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -1740,65 +1743,65 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - maxdisplayed=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - sizeref=None, - starts=None, - stream=None, - text=None, - u=None, - uhoverformat=None, - uid=None, - uirevision=None, - usrc=None, - v=None, - vhoverformat=None, - visible=None, - vsrc=None, - w=None, - whoverformat=None, - wsrc=None, - x=None, - xhoverformat=None, - xsrc=None, - y=None, - yhoverformat=None, - ysrc=None, - z=None, - zhoverformat=None, - zsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + maxdisplayed: int|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + sizeref: int|float|None = None, + starts: None|None = None, + stream: None|None = None, + text: str|None = None, + u: NDArray|None = None, + uhoverformat: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + usrc: str|None = None, + v: NDArray|None = None, + vhoverformat: str|None = None, + visible: Any|None = None, + vsrc: str|None = None, + w: NDArray|None = None, + whoverformat: str|None = None, + wsrc: str|None = None, + x: NDArray|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_sunburst.py b/plotly/graph_objs/_sunburst.py index fa0f36b2b8..1597b9eb97 100644 --- a/plotly/graph_objs/_sunburst.py +++ b/plotly/graph_objs/_sunburst.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -77,7 +80,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -145,7 +148,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -234,7 +237,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -281,7 +284,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -324,7 +327,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -415,7 +418,7 @@ def labels(self): Returns ------- - numpy.ndarray + NDArray """ return self['labels'] @@ -642,7 +645,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -756,7 +759,7 @@ def parents(self): Returns ------- - numpy.ndarray + NDArray """ return self['parents'] @@ -886,7 +889,7 @@ def text(self): Returns ------- - numpy.ndarray + NDArray """ return self['text'] @@ -988,7 +991,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1085,7 +1088,7 @@ def values(self): Returns ------- - numpy.ndarray + NDArray """ return self['values'] @@ -1409,54 +1412,54 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - branchvalues=None, - count=None, - customdata=None, - customdatasrc=None, - domain=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextfont=None, - insidetextorientation=None, - labels=None, - labelssrc=None, - leaf=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, - marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - outsidetextfont=None, - parents=None, - parentssrc=None, - root=None, - rotation=None, - sort=None, - stream=None, - text=None, - textfont=None, - textinfo=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + branchvalues: Any|None = None, + count: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextfont: None|None = None, + insidetextorientation: Any|None = None, + labels: NDArray|None = None, + labelssrc: str|None = None, + leaf: None|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + level: Any|None = None, + marker: None|None = None, + maxdepth: int|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + outsidetextfont: None|None = None, + parents: NDArray|None = None, + parentssrc: str|None = None, + root: None|None = None, + rotation: int|float|None = None, + sort: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_surface.py b/plotly/graph_objs/_surface.py index 2be5d967cc..aa70bd3230 100644 --- a/plotly/graph_objs/_surface.py +++ b/plotly/graph_objs/_surface.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -285,7 +288,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -354,7 +357,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -440,7 +443,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -483,7 +486,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -526,7 +529,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -733,7 +736,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -958,7 +961,7 @@ def surfacecolor(self): Returns ------- - numpy.ndarray + NDArray """ return self['surfacecolor'] @@ -1003,7 +1006,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1121,7 +1124,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1216,7 +1219,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -1311,7 +1314,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -1719,64 +1722,64 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colorscale=None, - connectgaps=None, - contours=None, - customdata=None, - customdatasrc=None, - hidesurface=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - opacityscale=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - stream=None, - surfacecolor=None, - surfacecolorsrc=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - z=None, - zcalendar=None, - zhoverformat=None, - zsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + connectgaps: bool|None = None, + contours: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + hidesurface: bool|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + opacityscale: Any|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + stream: None|None = None, + surfacecolor: NDArray|None = None, + surfacecolorsrc: str|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xcalendar: Any|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + ycalendar: Any|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zcalendar: Any|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_table.py b/plotly/graph_objs/_table.py index 1610dcd25a..0570778443 100644 --- a/plotly/graph_objs/_table.py +++ b/plotly/graph_objs/_table.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -48,7 +51,7 @@ def columnorder(self): Returns ------- - numpy.ndarray + NDArray """ return self['columnorder'] @@ -91,7 +94,7 @@ def columnwidth(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['columnwidth'] @@ -135,7 +138,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -224,7 +227,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -288,7 +291,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -430,7 +433,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -715,31 +718,31 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - cells=None, - columnorder=None, - columnordersrc=None, - columnwidth=None, - columnwidthsrc=None, - customdata=None, - customdatasrc=None, - domain=None, - header=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - ids=None, - idssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - stream=None, - uid=None, - uirevision=None, - visible=None, + cells: None|None = None, + columnorder: NDArray|None = None, + columnordersrc: str|None = None, + columnwidth: int|float|None = None, + columnwidthsrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + domain: None|None = None, + header: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + stream: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_treemap.py b/plotly/graph_objs/_treemap.py index 240af127f0..c35677833e 100644 --- a/plotly/graph_objs/_treemap.py +++ b/plotly/graph_objs/_treemap.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -77,7 +80,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -145,7 +148,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -234,7 +237,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -281,7 +284,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -324,7 +327,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -387,7 +390,7 @@ def labels(self): Returns ------- - numpy.ndarray + NDArray """ return self['labels'] @@ -593,7 +596,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -707,7 +710,7 @@ def parents(self): Returns ------- - numpy.ndarray + NDArray """ return self['parents'] @@ -835,7 +838,7 @@ def text(self): Returns ------- - numpy.ndarray + NDArray """ return self['text'] @@ -960,7 +963,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1078,7 +1081,7 @@ def values(self): Returns ------- - numpy.ndarray + NDArray """ return self['values'] @@ -1394,54 +1397,54 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - branchvalues=None, - count=None, - customdata=None, - customdatasrc=None, - domain=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextfont=None, - labels=None, - labelssrc=None, - legend=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, - marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - outsidetextfont=None, - parents=None, - parentssrc=None, - pathbar=None, - root=None, - sort=None, - stream=None, - text=None, - textfont=None, - textinfo=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - tiling=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + branchvalues: Any|None = None, + count: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + domain: None|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + insidetextfont: None|None = None, + labels: NDArray|None = None, + labelssrc: str|None = None, + legend: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + level: Any|None = None, + marker: None|None = None, + maxdepth: int|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + outsidetextfont: None|None = None, + parents: NDArray|None = None, + parentssrc: str|None = None, + pathbar: None|None = None, + root: None|None = None, + sort: bool|None = None, + stream: None|None = None, + text: NDArray|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + tiling: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_violin.py b/plotly/graph_objs/_violin.py index 97ef3643e6..ed394a538c 100644 --- a/plotly/graph_objs/_violin.py +++ b/plotly/graph_objs/_violin.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -93,7 +96,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -166,7 +169,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -277,7 +280,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -320,7 +323,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -363,7 +366,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -614,7 +617,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -1049,7 +1052,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1211,7 +1214,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1329,7 +1332,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -1813,67 +1816,67 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - alignmentgroup=None, - bandwidth=None, - box=None, - customdata=None, - customdatasrc=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - jitter=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - marker=None, - meanline=None, - meta=None, - metasrc=None, - name=None, - offsetgroup=None, - opacity=None, - orientation=None, - pointpos=None, - points=None, - quartilemethod=None, - scalegroup=None, - scalemode=None, - selected=None, - selectedpoints=None, - showlegend=None, - side=None, - span=None, - spanmode=None, - stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - unselected=None, - visible=None, - width=None, - x=None, - x0=None, - xaxis=None, - xhoverformat=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - yhoverformat=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + bandwidth: int|float|None = None, + box: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + fillcolor: str|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hoveron: Any|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + jitter: int|float|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + marker: None|None = None, + meanline: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + offsetgroup: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + pointpos: int|float|None = None, + points: Any|None = None, + quartilemethod: Any|None = None, + scalegroup: str|None = None, + scalemode: Any|None = None, + selected: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + side: Any|None = None, + span: list|None = None, + spanmode: Any|None = None, + stream: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + unselected: None|None = None, + visible: Any|None = None, + width: int|float|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + zorder: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_volume.py b/plotly/graph_objs/_volume.py index 0a318e9397..92ec76c9cc 100644 --- a/plotly/graph_objs/_volume.py +++ b/plotly/graph_objs/_volume.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -282,7 +285,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -351,7 +354,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -437,7 +440,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -480,7 +483,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -523,7 +526,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -770,7 +773,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -1061,7 +1064,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1156,7 +1159,7 @@ def value(self): Returns ------- - numpy.ndarray + NDArray """ return self['value'] @@ -1244,7 +1247,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1315,7 +1318,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -1386,7 +1389,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -1781,67 +1784,67 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - caps=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colorscale=None, - contour=None, - customdata=None, - customdatasrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - isomax=None, - isomin=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - lighting=None, - lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - opacityscale=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, - slices=None, - spaceframe=None, - stream=None, - surface=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, - value=None, - valuehoverformat=None, - valuesrc=None, - visible=None, - x=None, - xhoverformat=None, - xsrc=None, - y=None, - yhoverformat=None, - ysrc=None, - z=None, - zhoverformat=None, - zsrc=None, + autocolorscale: bool|None = None, + caps: None|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + contour: None|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + flatshading: bool|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + isomax: int|float|None = None, + isomin: int|float|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + lighting: None|None = None, + lightposition: None|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + opacityscale: Any|None = None, + reversescale: bool|None = None, + scene: str|None = None, + showlegend: bool|None = None, + showscale: bool|None = None, + slices: None|None = None, + spaceframe: None|None = None, + stream: None|None = None, + surface: None|None = None, + text: str|None = None, + textsrc: str|None = None, + uid: str|None = None, + uirevision: Any|None = None, + value: NDArray|None = None, + valuehoverformat: str|None = None, + valuesrc: str|None = None, + visible: Any|None = None, + x: NDArray|None = None, + xhoverformat: str|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + yhoverformat: str|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zhoverformat: str|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/_waterfall.py b/plotly/graph_objs/_waterfall.py index 31cd1d8e15..87893f3104 100644 --- a/plotly/graph_objs/_waterfall.py +++ b/plotly/graph_objs/_waterfall.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceType as _BaseTraceType import copy as _copy @@ -136,7 +139,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -244,7 +247,7 @@ def hoverinfo(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['hoverinfo'] @@ -332,7 +335,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -379,7 +382,7 @@ def hovertext(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertext'] @@ -422,7 +425,7 @@ def ids(self): Returns ------- - numpy.ndarray + NDArray """ return self['ids'] @@ -649,7 +652,7 @@ def measure(self): Returns ------- - numpy.ndarray + NDArray """ return self['measure'] @@ -697,7 +700,7 @@ def meta(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['meta'] @@ -762,7 +765,7 @@ def offset(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['offset'] @@ -963,7 +966,7 @@ def text(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['text'] @@ -1065,7 +1068,7 @@ def textposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textposition'] @@ -1141,7 +1144,7 @@ def texttemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['texttemplate'] @@ -1282,7 +1285,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -1322,7 +1325,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -1506,7 +1509,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -2087,79 +2090,79 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - alignmentgroup=None, - base=None, - cliponaxis=None, - connector=None, - constraintext=None, - customdata=None, - customdatasrc=None, - decreasing=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - increasing=None, - insidetextanchor=None, - insidetextfont=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - measure=None, - measuresrc=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetgroup=None, - offsetsrc=None, - opacity=None, - orientation=None, - outsidetextfont=None, - selectedpoints=None, - showlegend=None, - stream=None, - text=None, - textangle=None, - textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - totals=None, - uid=None, - uirevision=None, - visible=None, - width=None, - widthsrc=None, - x=None, - x0=None, - xaxis=None, - xhoverformat=None, - xperiod=None, - xperiod0=None, - xperiodalignment=None, - xsrc=None, - y=None, - y0=None, - yaxis=None, - yhoverformat=None, - yperiod=None, - yperiod0=None, - yperiodalignment=None, - ysrc=None, - zorder=None, + alignmentgroup: str|None = None, + base: int|float|None = None, + cliponaxis: bool|None = None, + connector: None|None = None, + constraintext: Any|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + decreasing: None|None = None, + dx: int|float|None = None, + dy: int|float|None = None, + hoverinfo: Any|None = None, + hoverinfosrc: str|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + hovertext: str|None = None, + hovertextsrc: str|None = None, + ids: NDArray|None = None, + idssrc: str|None = None, + increasing: None|None = None, + insidetextanchor: Any|None = None, + insidetextfont: None|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + measure: NDArray|None = None, + measuresrc: str|None = None, + meta: Any|None = None, + metasrc: str|None = None, + name: str|None = None, + offset: int|float|None = None, + offsetgroup: str|None = None, + offsetsrc: str|None = None, + opacity: int|float|None = None, + orientation: Any|None = None, + outsidetextfont: None|None = None, + selectedpoints: Any|None = None, + showlegend: bool|None = None, + stream: None|None = None, + text: str|None = None, + textangle: int|float|None = None, + textfont: None|None = None, + textinfo: Any|None = None, + textposition: Any|None = None, + textpositionsrc: str|None = None, + textsrc: str|None = None, + texttemplate: str|None = None, + texttemplatesrc: str|None = None, + totals: None|None = None, + uid: str|None = None, + uirevision: Any|None = None, + visible: Any|None = None, + width: int|float|None = None, + widthsrc: str|None = None, + x: NDArray|None = None, + x0: Any|None = None, + xaxis: str|None = None, + xhoverformat: str|None = None, + xperiod: Any|None = None, + xperiod0: Any|None = None, + xperiodalignment: Any|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + y0: Any|None = None, + yaxis: str|None = None, + yhoverformat: str|None = None, + yperiod: Any|None = None, + yperiod0: Any|None = None, + yperiodalignment: Any|None = None, + ysrc: str|None = None, + zorder: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/_error_x.py b/plotly/graph_objs/bar/_error_x.py index 3f72f0bec1..f499be27ad 100644 --- a/plotly/graph_objs/bar/_error_x.py +++ b/plotly/graph_objs/bar/_error_x.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -25,7 +28,7 @@ def array(self): Returns ------- - numpy.ndarray + NDArray """ return self['array'] @@ -47,7 +50,7 @@ def arrayminus(self): Returns ------- - numpy.ndarray + NDArray """ return self['arrayminus'] @@ -394,21 +397,21 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - array=None, - arrayminus=None, - arrayminussrc=None, - arraysrc=None, - color=None, - copy_ystyle=None, - symmetric=None, - thickness=None, - traceref=None, - tracerefminus=None, - type=None, - value=None, - valueminus=None, - visible=None, - width=None, + array: NDArray|None = None, + arrayminus: NDArray|None = None, + arrayminussrc: str|None = None, + arraysrc: str|None = None, + color: str|None = None, + copy_ystyle: bool|None = None, + symmetric: bool|None = None, + thickness: int|float|None = None, + traceref: int|None = None, + tracerefminus: int|None = None, + type: Any|None = None, + value: int|float|None = None, + valueminus: int|float|None = None, + visible: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/_error_y.py b/plotly/graph_objs/bar/_error_y.py index 42616fd9a0..02839c9ea2 100644 --- a/plotly/graph_objs/bar/_error_y.py +++ b/plotly/graph_objs/bar/_error_y.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -25,7 +28,7 @@ def array(self): Returns ------- - numpy.ndarray + NDArray """ return self['array'] @@ -47,7 +50,7 @@ def arrayminus(self): Returns ------- - numpy.ndarray + NDArray """ return self['arrayminus'] @@ -374,20 +377,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - array=None, - arrayminus=None, - arrayminussrc=None, - arraysrc=None, - color=None, - symmetric=None, - thickness=None, - traceref=None, - tracerefminus=None, - type=None, - value=None, - valueminus=None, - visible=None, - width=None, + array: NDArray|None = None, + arrayminus: NDArray|None = None, + arrayminussrc: str|None = None, + arraysrc: str|None = None, + color: str|None = None, + symmetric: bool|None = None, + thickness: int|float|None = None, + traceref: int|None = None, + tracerefminus: int|None = None, + type: Any|None = None, + value: int|float|None = None, + valueminus: int|float|None = None, + visible: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/_hoverlabel.py b/plotly/graph_objs/bar/_hoverlabel.py index a0b0af65f9..f493ccbd69 100644 --- a/plotly/graph_objs/bar/_hoverlabel.py +++ b/plotly/graph_objs/bar/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/_insidetextfont.py b/plotly/graph_objs/bar/_insidetextfont.py index 3e92ac3282..277ca5bbb0 100644 --- a/plotly/graph_objs/bar/_insidetextfont.py +++ b/plotly/graph_objs/bar/_insidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/_legendgrouptitle.py b/plotly/graph_objs/bar/_legendgrouptitle.py index 705bf96070..9fbf7596f9 100644 --- a/plotly/graph_objs/bar/_legendgrouptitle.py +++ b/plotly/graph_objs/bar/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/_marker.py b/plotly/graph_objs/bar/_marker.py index 6e5f4dd8e9..3f97ac1cbe 100644 --- a/plotly/graph_objs/bar/_marker.py +++ b/plotly/graph_objs/bar/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -155,7 +158,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -342,7 +345,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -538,23 +541,23 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - cornerradius=None, - line=None, - opacity=None, - opacitysrc=None, - pattern=None, - reversescale=None, - showscale=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + cornerradius: Any|None = None, + line: None|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + pattern: None|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/_outsidetextfont.py b/plotly/graph_objs/bar/_outsidetextfont.py index bb0359a06b..444d6d133a 100644 --- a/plotly/graph_objs/bar/_outsidetextfont.py +++ b/plotly/graph_objs/bar/_outsidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/_selected.py b/plotly/graph_objs/bar/_selected.py index 9fbfa4ac24..0695a013c3 100644 --- a/plotly/graph_objs/bar/_selected.py +++ b/plotly/graph_objs/bar/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/_stream.py b/plotly/graph_objs/bar/_stream.py index b56ca69f42..ad69fb74e6 100644 --- a/plotly/graph_objs/bar/_stream.py +++ b/plotly/graph_objs/bar/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/_textfont.py b/plotly/graph_objs/bar/_textfont.py index 1735bd549f..31346e79e6 100644 --- a/plotly/graph_objs/bar/_textfont.py +++ b/plotly/graph_objs/bar/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/_unselected.py b/plotly/graph_objs/bar/_unselected.py index d3a310db93..936dd409c7 100644 --- a/plotly/graph_objs/bar/_unselected.py +++ b/plotly/graph_objs/bar/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/hoverlabel/_font.py b/plotly/graph_objs/bar/hoverlabel/_font.py index 9b8728bbcd..aab0c19126 100644 --- a/plotly/graph_objs/bar/hoverlabel/_font.py +++ b/plotly/graph_objs/bar/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/legendgrouptitle/_font.py b/plotly/graph_objs/bar/legendgrouptitle/_font.py index a016e599f6..d13783658a 100644 --- a/plotly/graph_objs/bar/legendgrouptitle/_font.py +++ b/plotly/graph_objs/bar/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/marker/_colorbar.py b/plotly/graph_objs/bar/marker/_colorbar.py index 06a558c628..1085b78579 100644 --- a/plotly/graph_objs/bar/marker/_colorbar.py +++ b/plotly/graph_objs/bar/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -853,7 +856,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -894,7 +897,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1395,55 +1398,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/marker/_line.py b/plotly/graph_objs/bar/marker/_line.py index 23af43e93e..fc323a912d 100644 --- a/plotly/graph_objs/bar/marker/_line.py +++ b/plotly/graph_objs/bar/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -156,7 +159,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -303,7 +306,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -417,18 +420,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorscale=None, - colorsrc=None, - reversescale=None, - width=None, - widthsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + reversescale: bool|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/marker/_pattern.py b/plotly/graph_objs/bar/marker/_pattern.py index adf8e1d5f4..fdfc020168 100644 --- a/plotly/graph_objs/bar/marker/_pattern.py +++ b/plotly/graph_objs/bar/marker/_pattern.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -32,7 +35,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -80,7 +83,7 @@ def fgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['fgcolor'] @@ -166,7 +169,7 @@ def shape(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['shape'] @@ -208,7 +211,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -252,7 +255,7 @@ def solidity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['solidity'] @@ -334,18 +337,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bgcolorsrc=None, - fgcolor=None, - fgcolorsrc=None, - fgopacity=None, - fillmode=None, - shape=None, - shapesrc=None, - size=None, - sizesrc=None, - solidity=None, - soliditysrc=None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + fgcolor: str|None = None, + fgcolorsrc: str|None = None, + fgopacity: int|float|None = None, + fillmode: Any|None = None, + shape: Any|None = None, + shapesrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + solidity: int|float|None = None, + soliditysrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/marker/colorbar/_tickfont.py b/plotly/graph_objs/bar/marker/colorbar/_tickfont.py index fd13a7dbe1..9213ce93ac 100644 --- a/plotly/graph_objs/bar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/bar/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/bar/marker/colorbar/_tickformatstop.py index 8c2061b685..2d8f1da40f 100644 --- a/plotly/graph_objs/bar/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/bar/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/marker/colorbar/_title.py b/plotly/graph_objs/bar/marker/colorbar/_title.py index 049b5a7573..9ef80ddca1 100644 --- a/plotly/graph_objs/bar/marker/colorbar/_title.py +++ b/plotly/graph_objs/bar/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/marker/colorbar/title/_font.py b/plotly/graph_objs/bar/marker/colorbar/title/_font.py index 93dd0d032c..7aed44ffe6 100644 --- a/plotly/graph_objs/bar/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/bar/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/selected/_marker.py b/plotly/graph_objs/bar/selected/_marker.py index e5f49bd202..5df6ed22ac 100644 --- a/plotly/graph_objs/bar/selected/_marker.py +++ b/plotly/graph_objs/bar/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, + color: str|None = None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/selected/_textfont.py b/plotly/graph_objs/bar/selected/_textfont.py index 76df78e4b5..fa126709d9 100644 --- a/plotly/graph_objs/bar/selected/_textfont.py +++ b/plotly/graph_objs/bar/selected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -46,7 +49,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/unselected/_marker.py b/plotly/graph_objs/bar/unselected/_marker.py index 96aa2a4fe2..ed50322333 100644 --- a/plotly/graph_objs/bar/unselected/_marker.py +++ b/plotly/graph_objs/bar/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -72,8 +75,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, + color: str|None = None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/bar/unselected/_textfont.py b/plotly/graph_objs/bar/unselected/_textfont.py index 7875335240..b970ed78a4 100644 --- a/plotly/graph_objs/bar/unselected/_textfont.py +++ b/plotly/graph_objs/bar/unselected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -48,7 +51,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/_hoverlabel.py b/plotly/graph_objs/barpolar/_hoverlabel.py index eeb503e627..80f80818ab 100644 --- a/plotly/graph_objs/barpolar/_hoverlabel.py +++ b/plotly/graph_objs/barpolar/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/_legendgrouptitle.py b/plotly/graph_objs/barpolar/_legendgrouptitle.py index d96a3c6d26..a32015c932 100644 --- a/plotly/graph_objs/barpolar/_legendgrouptitle.py +++ b/plotly/graph_objs/barpolar/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/_marker.py b/plotly/graph_objs/barpolar/_marker.py index 0c23fa3ada..d13cff4233 100644 --- a/plotly/graph_objs/barpolar/_marker.py +++ b/plotly/graph_objs/barpolar/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -155,7 +158,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -319,7 +322,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -509,22 +512,22 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - line=None, - opacity=None, - opacitysrc=None, - pattern=None, - reversescale=None, - showscale=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + line: None|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + pattern: None|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/_selected.py b/plotly/graph_objs/barpolar/_selected.py index a877b9d2df..f98a47f39a 100644 --- a/plotly/graph_objs/barpolar/_selected.py +++ b/plotly/graph_objs/barpolar/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/_stream.py b/plotly/graph_objs/barpolar/_stream.py index a4c72f329a..be9e5f839e 100644 --- a/plotly/graph_objs/barpolar/_stream.py +++ b/plotly/graph_objs/barpolar/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/_unselected.py b/plotly/graph_objs/barpolar/_unselected.py index 96ebaf1693..c134c60c74 100644 --- a/plotly/graph_objs/barpolar/_unselected.py +++ b/plotly/graph_objs/barpolar/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/hoverlabel/_font.py b/plotly/graph_objs/barpolar/hoverlabel/_font.py index 723d2bc624..ef3e0ba4df 100644 --- a/plotly/graph_objs/barpolar/hoverlabel/_font.py +++ b/plotly/graph_objs/barpolar/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/legendgrouptitle/_font.py b/plotly/graph_objs/barpolar/legendgrouptitle/_font.py index ea7f65353e..5fbe2a0fba 100644 --- a/plotly/graph_objs/barpolar/legendgrouptitle/_font.py +++ b/plotly/graph_objs/barpolar/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/marker/_colorbar.py b/plotly/graph_objs/barpolar/marker/_colorbar.py index 4716c4f4f4..a45d7403e6 100644 --- a/plotly/graph_objs/barpolar/marker/_colorbar.py +++ b/plotly/graph_objs/barpolar/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/marker/_line.py b/plotly/graph_objs/barpolar/marker/_line.py index d7dd3c3337..a49798ed43 100644 --- a/plotly/graph_objs/barpolar/marker/_line.py +++ b/plotly/graph_objs/barpolar/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -156,7 +159,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -303,7 +306,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -417,18 +420,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorscale=None, - colorsrc=None, - reversescale=None, - width=None, - widthsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + reversescale: bool|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/marker/_pattern.py b/plotly/graph_objs/barpolar/marker/_pattern.py index 863c949975..91dbd9d063 100644 --- a/plotly/graph_objs/barpolar/marker/_pattern.py +++ b/plotly/graph_objs/barpolar/marker/_pattern.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -32,7 +35,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -80,7 +83,7 @@ def fgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['fgcolor'] @@ -166,7 +169,7 @@ def shape(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['shape'] @@ -208,7 +211,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -252,7 +255,7 @@ def solidity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['solidity'] @@ -334,18 +337,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bgcolorsrc=None, - fgcolor=None, - fgcolorsrc=None, - fgopacity=None, - fillmode=None, - shape=None, - shapesrc=None, - size=None, - sizesrc=None, - solidity=None, - soliditysrc=None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + fgcolor: str|None = None, + fgcolorsrc: str|None = None, + fgopacity: int|float|None = None, + fillmode: Any|None = None, + shape: Any|None = None, + shapesrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + solidity: int|float|None = None, + soliditysrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/marker/colorbar/_tickfont.py b/plotly/graph_objs/barpolar/marker/colorbar/_tickfont.py index 3f56f5311a..3fc300e0bf 100644 --- a/plotly/graph_objs/barpolar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/barpolar/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/barpolar/marker/colorbar/_tickformatstop.py index ed77d12eb9..bc6d3e9a26 100644 --- a/plotly/graph_objs/barpolar/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/barpolar/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/marker/colorbar/_title.py b/plotly/graph_objs/barpolar/marker/colorbar/_title.py index 6baac13be4..c254e32639 100644 --- a/plotly/graph_objs/barpolar/marker/colorbar/_title.py +++ b/plotly/graph_objs/barpolar/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/marker/colorbar/title/_font.py b/plotly/graph_objs/barpolar/marker/colorbar/title/_font.py index e9345d395e..858012f206 100644 --- a/plotly/graph_objs/barpolar/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/barpolar/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/selected/_marker.py b/plotly/graph_objs/barpolar/selected/_marker.py index 969cd73b49..169eab7409 100644 --- a/plotly/graph_objs/barpolar/selected/_marker.py +++ b/plotly/graph_objs/barpolar/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, + color: str|None = None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/selected/_textfont.py b/plotly/graph_objs/barpolar/selected/_textfont.py index a1b5d8a000..1cdd66002e 100644 --- a/plotly/graph_objs/barpolar/selected/_textfont.py +++ b/plotly/graph_objs/barpolar/selected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -46,7 +49,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/unselected/_marker.py b/plotly/graph_objs/barpolar/unselected/_marker.py index 5158ac88f0..fc9af7af02 100644 --- a/plotly/graph_objs/barpolar/unselected/_marker.py +++ b/plotly/graph_objs/barpolar/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -72,8 +75,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, + color: str|None = None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/barpolar/unselected/_textfont.py b/plotly/graph_objs/barpolar/unselected/_textfont.py index 87b98f415f..930aa13544 100644 --- a/plotly/graph_objs/barpolar/unselected/_textfont.py +++ b/plotly/graph_objs/barpolar/unselected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -48,7 +51,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/box/_hoverlabel.py b/plotly/graph_objs/box/_hoverlabel.py index d9fe2818ba..ae6883c739 100644 --- a/plotly/graph_objs/box/_hoverlabel.py +++ b/plotly/graph_objs/box/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/box/_legendgrouptitle.py b/plotly/graph_objs/box/_legendgrouptitle.py index d220d6865c..5362214c8d 100644 --- a/plotly/graph_objs/box/_legendgrouptitle.py +++ b/plotly/graph_objs/box/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/box/_line.py b/plotly/graph_objs/box/_line.py index 57aedda0f1..a32128e803 100644 --- a/plotly/graph_objs/box/_line.py +++ b/plotly/graph_objs/box/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/box/_marker.py b/plotly/graph_objs/box/_marker.py index 568a9ef0a2..363b6dde95 100644 --- a/plotly/graph_objs/box/_marker.py +++ b/plotly/graph_objs/box/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -289,13 +292,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - angle=None, - color=None, - line=None, - opacity=None, - outliercolor=None, - size=None, - symbol=None, + angle: int|float|None = None, + color: str|None = None, + line: None|None = None, + opacity: int|float|None = None, + outliercolor: str|None = None, + size: int|float|None = None, + symbol: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/box/_selected.py b/plotly/graph_objs/box/_selected.py index 83003eef08..f3de843631 100644 --- a/plotly/graph_objs/box/_selected.py +++ b/plotly/graph_objs/box/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/box/_stream.py b/plotly/graph_objs/box/_stream.py index 9b2e41005a..5d6d4d4d07 100644 --- a/plotly/graph_objs/box/_stream.py +++ b/plotly/graph_objs/box/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/box/_unselected.py b/plotly/graph_objs/box/_unselected.py index 3c8db0b851..0b90f9714a 100644 --- a/plotly/graph_objs/box/_unselected.py +++ b/plotly/graph_objs/box/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/box/hoverlabel/_font.py b/plotly/graph_objs/box/hoverlabel/_font.py index 2939f58ff1..557be6dfe8 100644 --- a/plotly/graph_objs/box/hoverlabel/_font.py +++ b/plotly/graph_objs/box/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/box/legendgrouptitle/_font.py b/plotly/graph_objs/box/legendgrouptitle/_font.py index 316ab74c12..82e81e53f8 100644 --- a/plotly/graph_objs/box/legendgrouptitle/_font.py +++ b/plotly/graph_objs/box/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/box/marker/_line.py b/plotly/graph_objs/box/marker/_line.py index 7964cb40b4..77162578cd 100644 --- a/plotly/graph_objs/box/marker/_line.py +++ b/plotly/graph_objs/box/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - outliercolor=None, - outlierwidth=None, - width=None, + color: str|None = None, + outliercolor: str|None = None, + outlierwidth: int|float|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/box/selected/_marker.py b/plotly/graph_objs/box/selected/_marker.py index 41b490c070..b29cc02915 100644 --- a/plotly/graph_objs/box/selected/_marker.py +++ b/plotly/graph_objs/box/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/box/unselected/_marker.py b/plotly/graph_objs/box/unselected/_marker.py index 6faa9bbb9d..d26218eab1 100644 --- a/plotly/graph_objs/box/unselected/_marker.py +++ b/plotly/graph_objs/box/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/candlestick/_decreasing.py b/plotly/graph_objs/candlestick/_decreasing.py index 853c0a3aa6..f1919b19d5 100644 --- a/plotly/graph_objs/candlestick/_decreasing.py +++ b/plotly/graph_objs/candlestick/_decreasing.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -74,8 +77,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fillcolor=None, - line=None, + fillcolor: str|None = None, + line: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/candlestick/_hoverlabel.py b/plotly/graph_objs/candlestick/_hoverlabel.py index f6855ac67c..883d447d0a 100644 --- a/plotly/graph_objs/candlestick/_hoverlabel.py +++ b/plotly/graph_objs/candlestick/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -282,16 +285,16 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, - split=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, + split: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/candlestick/_increasing.py b/plotly/graph_objs/candlestick/_increasing.py index 82836ab251..c796aa2885 100644 --- a/plotly/graph_objs/candlestick/_increasing.py +++ b/plotly/graph_objs/candlestick/_increasing.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -74,8 +77,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fillcolor=None, - line=None, + fillcolor: str|None = None, + line: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/candlestick/_legendgrouptitle.py b/plotly/graph_objs/candlestick/_legendgrouptitle.py index 3e8b0bb215..fab3aa9582 100644 --- a/plotly/graph_objs/candlestick/_legendgrouptitle.py +++ b/plotly/graph_objs/candlestick/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/candlestick/_line.py b/plotly/graph_objs/candlestick/_line.py index f59015c868..555cd234f6 100644 --- a/plotly/graph_objs/candlestick/_line.py +++ b/plotly/graph_objs/candlestick/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -47,7 +50,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - width=None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/candlestick/_stream.py b/plotly/graph_objs/candlestick/_stream.py index 168b77aab3..cb353c132f 100644 --- a/plotly/graph_objs/candlestick/_stream.py +++ b/plotly/graph_objs/candlestick/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/candlestick/decreasing/_line.py b/plotly/graph_objs/candlestick/decreasing/_line.py index bf2646eeed..3dce681936 100644 --- a/plotly/graph_objs/candlestick/decreasing/_line.py +++ b/plotly/graph_objs/candlestick/decreasing/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/candlestick/hoverlabel/_font.py b/plotly/graph_objs/candlestick/hoverlabel/_font.py index 841c120df9..548d540322 100644 --- a/plotly/graph_objs/candlestick/hoverlabel/_font.py +++ b/plotly/graph_objs/candlestick/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/candlestick/increasing/_line.py b/plotly/graph_objs/candlestick/increasing/_line.py index 614f572e0f..5155d37864 100644 --- a/plotly/graph_objs/candlestick/increasing/_line.py +++ b/plotly/graph_objs/candlestick/increasing/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/candlestick/legendgrouptitle/_font.py b/plotly/graph_objs/candlestick/legendgrouptitle/_font.py index 3a4ce934d4..cb48461d5d 100644 --- a/plotly/graph_objs/candlestick/legendgrouptitle/_font.py +++ b/plotly/graph_objs/candlestick/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/carpet/_aaxis.py b/plotly/graph_objs/carpet/_aaxis.py index 377faa5319..7f1836d2a8 100644 --- a/plotly/graph_objs/carpet/_aaxis.py +++ b/plotly/graph_objs/carpet/_aaxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -115,7 +118,7 @@ def categoryarray(self): Returns ------- - numpy.ndarray + NDArray """ return self['categoryarray'] @@ -1201,7 +1204,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -1242,7 +1245,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1538,64 +1541,64 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - arraydtick=None, - arraytick0=None, - autorange=None, - autotypenumbers=None, - categoryarray=None, - categoryarraysrc=None, - categoryorder=None, - cheatertype=None, - color=None, - dtick=None, - endline=None, - endlinecolor=None, - endlinewidth=None, - exponentformat=None, - fixedrange=None, - gridcolor=None, - griddash=None, - gridwidth=None, - labelalias=None, - labelpadding=None, - labelprefix=None, - labelsuffix=None, - linecolor=None, - linewidth=None, - minexponent=None, - minorgridcolor=None, - minorgridcount=None, - minorgriddash=None, - minorgridwidth=None, - nticks=None, - range=None, - rangemode=None, - separatethousands=None, - showexponent=None, - showgrid=None, - showline=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - smoothing=None, - startline=None, - startlinecolor=None, - startlinewidth=None, - tick0=None, - tickangle=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - tickmode=None, - tickprefix=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - title=None, - type=None, + arraydtick: int|None = None, + arraytick0: int|None = None, + autorange: Any|None = None, + autotypenumbers: Any|None = None, + categoryarray: NDArray|None = None, + categoryarraysrc: str|None = None, + categoryorder: Any|None = None, + cheatertype: Any|None = None, + color: str|None = None, + dtick: int|float|None = None, + endline: bool|None = None, + endlinecolor: str|None = None, + endlinewidth: int|float|None = None, + exponentformat: Any|None = None, + fixedrange: bool|None = None, + gridcolor: str|None = None, + griddash: str|None = None, + gridwidth: int|float|None = None, + labelalias: Any|None = None, + labelpadding: int|None = None, + labelprefix: str|None = None, + labelsuffix: str|None = None, + linecolor: str|None = None, + linewidth: int|float|None = None, + minexponent: int|float|None = None, + minorgridcolor: str|None = None, + minorgridcount: int|None = None, + minorgriddash: str|None = None, + minorgridwidth: int|float|None = None, + nticks: int|None = None, + range: list|None = None, + rangemode: Any|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showgrid: bool|None = None, + showline: bool|None = None, + showticklabels: Any|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + smoothing: int|float|None = None, + startline: bool|None = None, + startlinecolor: str|None = None, + startlinewidth: int|float|None = None, + tick0: int|float|None = None, + tickangle: int|float|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + title: None|None = None, + type: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/carpet/_baxis.py b/plotly/graph_objs/carpet/_baxis.py index 3abe6066c7..04a6bd6769 100644 --- a/plotly/graph_objs/carpet/_baxis.py +++ b/plotly/graph_objs/carpet/_baxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -115,7 +118,7 @@ def categoryarray(self): Returns ------- - numpy.ndarray + NDArray """ return self['categoryarray'] @@ -1201,7 +1204,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -1242,7 +1245,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1538,64 +1541,64 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - arraydtick=None, - arraytick0=None, - autorange=None, - autotypenumbers=None, - categoryarray=None, - categoryarraysrc=None, - categoryorder=None, - cheatertype=None, - color=None, - dtick=None, - endline=None, - endlinecolor=None, - endlinewidth=None, - exponentformat=None, - fixedrange=None, - gridcolor=None, - griddash=None, - gridwidth=None, - labelalias=None, - labelpadding=None, - labelprefix=None, - labelsuffix=None, - linecolor=None, - linewidth=None, - minexponent=None, - minorgridcolor=None, - minorgridcount=None, - minorgriddash=None, - minorgridwidth=None, - nticks=None, - range=None, - rangemode=None, - separatethousands=None, - showexponent=None, - showgrid=None, - showline=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - smoothing=None, - startline=None, - startlinecolor=None, - startlinewidth=None, - tick0=None, - tickangle=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - tickmode=None, - tickprefix=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - title=None, - type=None, + arraydtick: int|None = None, + arraytick0: int|None = None, + autorange: Any|None = None, + autotypenumbers: Any|None = None, + categoryarray: NDArray|None = None, + categoryarraysrc: str|None = None, + categoryorder: Any|None = None, + cheatertype: Any|None = None, + color: str|None = None, + dtick: int|float|None = None, + endline: bool|None = None, + endlinecolor: str|None = None, + endlinewidth: int|float|None = None, + exponentformat: Any|None = None, + fixedrange: bool|None = None, + gridcolor: str|None = None, + griddash: str|None = None, + gridwidth: int|float|None = None, + labelalias: Any|None = None, + labelpadding: int|None = None, + labelprefix: str|None = None, + labelsuffix: str|None = None, + linecolor: str|None = None, + linewidth: int|float|None = None, + minexponent: int|float|None = None, + minorgridcolor: str|None = None, + minorgridcount: int|None = None, + minorgriddash: str|None = None, + minorgridwidth: int|float|None = None, + nticks: int|None = None, + range: list|None = None, + rangemode: Any|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showgrid: bool|None = None, + showline: bool|None = None, + showticklabels: Any|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + smoothing: int|float|None = None, + startline: bool|None = None, + startlinecolor: str|None = None, + startlinewidth: int|float|None = None, + tick0: int|float|None = None, + tickangle: int|float|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + title: None|None = None, + type: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/carpet/_font.py b/plotly/graph_objs/carpet/_font.py index fc27a51179..93f62f9ba9 100644 --- a/plotly/graph_objs/carpet/_font.py +++ b/plotly/graph_objs/carpet/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/carpet/_legendgrouptitle.py b/plotly/graph_objs/carpet/_legendgrouptitle.py index c39d4ffdac..a355567892 100644 --- a/plotly/graph_objs/carpet/_legendgrouptitle.py +++ b/plotly/graph_objs/carpet/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/carpet/_stream.py b/plotly/graph_objs/carpet/_stream.py index 8d5f9b9b91..9d174b68ea 100644 --- a/plotly/graph_objs/carpet/_stream.py +++ b/plotly/graph_objs/carpet/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/carpet/aaxis/_tickfont.py b/plotly/graph_objs/carpet/aaxis/_tickfont.py index 90dc3c3a85..acdfca2c66 100644 --- a/plotly/graph_objs/carpet/aaxis/_tickfont.py +++ b/plotly/graph_objs/carpet/aaxis/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/carpet/aaxis/_tickformatstop.py b/plotly/graph_objs/carpet/aaxis/_tickformatstop.py index 18b5f55953..cd94e5e0d3 100644 --- a/plotly/graph_objs/carpet/aaxis/_tickformatstop.py +++ b/plotly/graph_objs/carpet/aaxis/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/carpet/aaxis/_title.py b/plotly/graph_objs/carpet/aaxis/_title.py index 2f60bdf527..7611fe2a9d 100644 --- a/plotly/graph_objs/carpet/aaxis/_title.py +++ b/plotly/graph_objs/carpet/aaxis/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -92,9 +95,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - offset=None, - text=None, + font: None|None = None, + offset: int|float|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/carpet/aaxis/title/_font.py b/plotly/graph_objs/carpet/aaxis/title/_font.py index 4e0dd7c0d8..9e28e21cbe 100644 --- a/plotly/graph_objs/carpet/aaxis/title/_font.py +++ b/plotly/graph_objs/carpet/aaxis/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/carpet/baxis/_tickfont.py b/plotly/graph_objs/carpet/baxis/_tickfont.py index b29b601172..ec79a86a40 100644 --- a/plotly/graph_objs/carpet/baxis/_tickfont.py +++ b/plotly/graph_objs/carpet/baxis/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/carpet/baxis/_tickformatstop.py b/plotly/graph_objs/carpet/baxis/_tickformatstop.py index 8d95704fda..2ab32cc40d 100644 --- a/plotly/graph_objs/carpet/baxis/_tickformatstop.py +++ b/plotly/graph_objs/carpet/baxis/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/carpet/baxis/_title.py b/plotly/graph_objs/carpet/baxis/_title.py index d97042543a..5333226a16 100644 --- a/plotly/graph_objs/carpet/baxis/_title.py +++ b/plotly/graph_objs/carpet/baxis/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -92,9 +95,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - offset=None, - text=None, + font: None|None = None, + offset: int|float|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/carpet/baxis/title/_font.py b/plotly/graph_objs/carpet/baxis/title/_font.py index 6cd34e9497..8cbeb25160 100644 --- a/plotly/graph_objs/carpet/baxis/title/_font.py +++ b/plotly/graph_objs/carpet/baxis/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/carpet/legendgrouptitle/_font.py b/plotly/graph_objs/carpet/legendgrouptitle/_font.py index ba9ebf8854..f70c295956 100644 --- a/plotly/graph_objs/carpet/legendgrouptitle/_font.py +++ b/plotly/graph_objs/carpet/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choropleth/_colorbar.py b/plotly/graph_objs/choropleth/_colorbar.py index cd68e4dc36..430821f5a3 100644 --- a/plotly/graph_objs/choropleth/_colorbar.py +++ b/plotly/graph_objs/choropleth/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -853,7 +856,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -894,7 +897,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1395,55 +1398,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choropleth/_hoverlabel.py b/plotly/graph_objs/choropleth/_hoverlabel.py index 8ef467f06e..ae62124fce 100644 --- a/plotly/graph_objs/choropleth/_hoverlabel.py +++ b/plotly/graph_objs/choropleth/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choropleth/_legendgrouptitle.py b/plotly/graph_objs/choropleth/_legendgrouptitle.py index b7e033e513..65a2a7fde0 100644 --- a/plotly/graph_objs/choropleth/_legendgrouptitle.py +++ b/plotly/graph_objs/choropleth/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choropleth/_marker.py b/plotly/graph_objs/choropleth/_marker.py index 85feecc3da..84effc4de1 100644 --- a/plotly/graph_objs/choropleth/_marker.py +++ b/plotly/graph_objs/choropleth/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -46,7 +49,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - line=None, - opacity=None, - opacitysrc=None, + line: None|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choropleth/_selected.py b/plotly/graph_objs/choropleth/_selected.py index dcd5100d76..924a7ff9e4 100644 --- a/plotly/graph_objs/choropleth/_selected.py +++ b/plotly/graph_objs/choropleth/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choropleth/_stream.py b/plotly/graph_objs/choropleth/_stream.py index 6e5756bc9f..6be8eaa9f3 100644 --- a/plotly/graph_objs/choropleth/_stream.py +++ b/plotly/graph_objs/choropleth/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choropleth/_unselected.py b/plotly/graph_objs/choropleth/_unselected.py index d385a5b97c..ac0e55c586 100644 --- a/plotly/graph_objs/choropleth/_unselected.py +++ b/plotly/graph_objs/choropleth/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choropleth/colorbar/_tickfont.py b/plotly/graph_objs/choropleth/colorbar/_tickfont.py index 742c0f504b..e752504ce8 100644 --- a/plotly/graph_objs/choropleth/colorbar/_tickfont.py +++ b/plotly/graph_objs/choropleth/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choropleth/colorbar/_tickformatstop.py b/plotly/graph_objs/choropleth/colorbar/_tickformatstop.py index f8263c06bb..11c0138400 100644 --- a/plotly/graph_objs/choropleth/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/choropleth/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choropleth/colorbar/_title.py b/plotly/graph_objs/choropleth/colorbar/_title.py index 2574be4213..e04c47809b 100644 --- a/plotly/graph_objs/choropleth/colorbar/_title.py +++ b/plotly/graph_objs/choropleth/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choropleth/colorbar/title/_font.py b/plotly/graph_objs/choropleth/colorbar/title/_font.py index 9e2424622c..d6b3d1c865 100644 --- a/plotly/graph_objs/choropleth/colorbar/title/_font.py +++ b/plotly/graph_objs/choropleth/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choropleth/hoverlabel/_font.py b/plotly/graph_objs/choropleth/hoverlabel/_font.py index b376dcc592..97c1d1b847 100644 --- a/plotly/graph_objs/choropleth/hoverlabel/_font.py +++ b/plotly/graph_objs/choropleth/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choropleth/legendgrouptitle/_font.py b/plotly/graph_objs/choropleth/legendgrouptitle/_font.py index 54307ad05f..f5c48660a4 100644 --- a/plotly/graph_objs/choropleth/legendgrouptitle/_font.py +++ b/plotly/graph_objs/choropleth/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choropleth/marker/_line.py b/plotly/graph_objs/choropleth/marker/_line.py index 769e8a2ca7..540b382513 100644 --- a/plotly/graph_objs/choropleth/marker/_line.py +++ b/plotly/graph_objs/choropleth/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -32,7 +35,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -73,7 +76,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -124,10 +127,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str|None = None, + colorsrc: str|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choropleth/selected/_marker.py b/plotly/graph_objs/choropleth/selected/_marker.py index 4a65d7e9de..b3140c9a02 100644 --- a/plotly/graph_objs/choropleth/selected/_marker.py +++ b/plotly/graph_objs/choropleth/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -42,7 +45,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choropleth/unselected/_marker.py b/plotly/graph_objs/choropleth/unselected/_marker.py index 87da3d94d6..f3293f7ab4 100644 --- a/plotly/graph_objs/choropleth/unselected/_marker.py +++ b/plotly/graph_objs/choropleth/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmap/_colorbar.py b/plotly/graph_objs/choroplethmap/_colorbar.py index 5748628306..ecdfd239fd 100644 --- a/plotly/graph_objs/choroplethmap/_colorbar.py +++ b/plotly/graph_objs/choroplethmap/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmap/_hoverlabel.py b/plotly/graph_objs/choroplethmap/_hoverlabel.py index 23ce9e8baa..7f7e1fcf61 100644 --- a/plotly/graph_objs/choroplethmap/_hoverlabel.py +++ b/plotly/graph_objs/choroplethmap/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmap/_legendgrouptitle.py b/plotly/graph_objs/choroplethmap/_legendgrouptitle.py index 75a3a23dc3..1e70eb7a13 100644 --- a/plotly/graph_objs/choroplethmap/_legendgrouptitle.py +++ b/plotly/graph_objs/choroplethmap/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmap/_marker.py b/plotly/graph_objs/choroplethmap/_marker.py index 841aa582c8..2bf1488c65 100644 --- a/plotly/graph_objs/choroplethmap/_marker.py +++ b/plotly/graph_objs/choroplethmap/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -46,7 +49,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - line=None, - opacity=None, - opacitysrc=None, + line: None|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmap/_selected.py b/plotly/graph_objs/choroplethmap/_selected.py index 6a8554c616..982447aeb9 100644 --- a/plotly/graph_objs/choroplethmap/_selected.py +++ b/plotly/graph_objs/choroplethmap/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmap/_stream.py b/plotly/graph_objs/choroplethmap/_stream.py index aaacb0b97a..9116113c3d 100644 --- a/plotly/graph_objs/choroplethmap/_stream.py +++ b/plotly/graph_objs/choroplethmap/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmap/_unselected.py b/plotly/graph_objs/choroplethmap/_unselected.py index 03d43c0a8a..5c0f9e3407 100644 --- a/plotly/graph_objs/choroplethmap/_unselected.py +++ b/plotly/graph_objs/choroplethmap/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmap/colorbar/_tickfont.py b/plotly/graph_objs/choroplethmap/colorbar/_tickfont.py index b8e1df9f39..a0c7f9684c 100644 --- a/plotly/graph_objs/choroplethmap/colorbar/_tickfont.py +++ b/plotly/graph_objs/choroplethmap/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmap/colorbar/_tickformatstop.py b/plotly/graph_objs/choroplethmap/colorbar/_tickformatstop.py index 5bb4ab5ce1..f684da7af7 100644 --- a/plotly/graph_objs/choroplethmap/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/choroplethmap/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmap/colorbar/_title.py b/plotly/graph_objs/choroplethmap/colorbar/_title.py index 60ed17088b..5d1ee0f8d6 100644 --- a/plotly/graph_objs/choroplethmap/colorbar/_title.py +++ b/plotly/graph_objs/choroplethmap/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmap/colorbar/title/_font.py b/plotly/graph_objs/choroplethmap/colorbar/title/_font.py index 839633abcd..daee96a913 100644 --- a/plotly/graph_objs/choroplethmap/colorbar/title/_font.py +++ b/plotly/graph_objs/choroplethmap/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmap/hoverlabel/_font.py b/plotly/graph_objs/choroplethmap/hoverlabel/_font.py index 83d34a895e..f11f7ba070 100644 --- a/plotly/graph_objs/choroplethmap/hoverlabel/_font.py +++ b/plotly/graph_objs/choroplethmap/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmap/legendgrouptitle/_font.py b/plotly/graph_objs/choroplethmap/legendgrouptitle/_font.py index 635fe4b5af..3e577c7f48 100644 --- a/plotly/graph_objs/choroplethmap/legendgrouptitle/_font.py +++ b/plotly/graph_objs/choroplethmap/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmap/marker/_line.py b/plotly/graph_objs/choroplethmap/marker/_line.py index a7ad3f937c..7da99c2deb 100644 --- a/plotly/graph_objs/choroplethmap/marker/_line.py +++ b/plotly/graph_objs/choroplethmap/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -32,7 +35,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -73,7 +76,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -124,10 +127,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str|None = None, + colorsrc: str|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmap/selected/_marker.py b/plotly/graph_objs/choroplethmap/selected/_marker.py index ed18022d7e..a3f869a4cb 100644 --- a/plotly/graph_objs/choroplethmap/selected/_marker.py +++ b/plotly/graph_objs/choroplethmap/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -42,7 +45,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmap/unselected/_marker.py b/plotly/graph_objs/choroplethmap/unselected/_marker.py index 099ec90f15..09bb0ca9ba 100644 --- a/plotly/graph_objs/choroplethmap/unselected/_marker.py +++ b/plotly/graph_objs/choroplethmap/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmapbox/_colorbar.py b/plotly/graph_objs/choroplethmapbox/_colorbar.py index 5efab86794..41f1b2f5b7 100644 --- a/plotly/graph_objs/choroplethmapbox/_colorbar.py +++ b/plotly/graph_objs/choroplethmapbox/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmapbox/_hoverlabel.py b/plotly/graph_objs/choroplethmapbox/_hoverlabel.py index 72632b93f1..ceeaa37082 100644 --- a/plotly/graph_objs/choroplethmapbox/_hoverlabel.py +++ b/plotly/graph_objs/choroplethmapbox/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmapbox/_legendgrouptitle.py b/plotly/graph_objs/choroplethmapbox/_legendgrouptitle.py index 5764ce9e97..5633601bde 100644 --- a/plotly/graph_objs/choroplethmapbox/_legendgrouptitle.py +++ b/plotly/graph_objs/choroplethmapbox/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmapbox/_marker.py b/plotly/graph_objs/choroplethmapbox/_marker.py index cfc0626095..6b32945687 100644 --- a/plotly/graph_objs/choroplethmapbox/_marker.py +++ b/plotly/graph_objs/choroplethmapbox/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -46,7 +49,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - line=None, - opacity=None, - opacitysrc=None, + line: None|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmapbox/_selected.py b/plotly/graph_objs/choroplethmapbox/_selected.py index 3ad7b12c68..15308f45ba 100644 --- a/plotly/graph_objs/choroplethmapbox/_selected.py +++ b/plotly/graph_objs/choroplethmapbox/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmapbox/_stream.py b/plotly/graph_objs/choroplethmapbox/_stream.py index 52d6c74b5c..d733a028a0 100644 --- a/plotly/graph_objs/choroplethmapbox/_stream.py +++ b/plotly/graph_objs/choroplethmapbox/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmapbox/_unselected.py b/plotly/graph_objs/choroplethmapbox/_unselected.py index f6717ab241..1786b3836e 100644 --- a/plotly/graph_objs/choroplethmapbox/_unselected.py +++ b/plotly/graph_objs/choroplethmapbox/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmapbox/colorbar/_tickfont.py b/plotly/graph_objs/choroplethmapbox/colorbar/_tickfont.py index d50876e096..9ccf8f076d 100644 --- a/plotly/graph_objs/choroplethmapbox/colorbar/_tickfont.py +++ b/plotly/graph_objs/choroplethmapbox/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmapbox/colorbar/_tickformatstop.py b/plotly/graph_objs/choroplethmapbox/colorbar/_tickformatstop.py index 95dbf18e1c..05210b0ff8 100644 --- a/plotly/graph_objs/choroplethmapbox/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/choroplethmapbox/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmapbox/colorbar/_title.py b/plotly/graph_objs/choroplethmapbox/colorbar/_title.py index 9d59a7ee41..0ef17e7049 100644 --- a/plotly/graph_objs/choroplethmapbox/colorbar/_title.py +++ b/plotly/graph_objs/choroplethmapbox/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmapbox/colorbar/title/_font.py b/plotly/graph_objs/choroplethmapbox/colorbar/title/_font.py index a69b722c67..9fa8b8fc77 100644 --- a/plotly/graph_objs/choroplethmapbox/colorbar/title/_font.py +++ b/plotly/graph_objs/choroplethmapbox/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmapbox/hoverlabel/_font.py b/plotly/graph_objs/choroplethmapbox/hoverlabel/_font.py index ac6aec3605..73b870ef95 100644 --- a/plotly/graph_objs/choroplethmapbox/hoverlabel/_font.py +++ b/plotly/graph_objs/choroplethmapbox/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmapbox/legendgrouptitle/_font.py b/plotly/graph_objs/choroplethmapbox/legendgrouptitle/_font.py index 734d772cf9..b78020425d 100644 --- a/plotly/graph_objs/choroplethmapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objs/choroplethmapbox/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmapbox/marker/_line.py b/plotly/graph_objs/choroplethmapbox/marker/_line.py index b0ee7236cd..2f10234365 100644 --- a/plotly/graph_objs/choroplethmapbox/marker/_line.py +++ b/plotly/graph_objs/choroplethmapbox/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -32,7 +35,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -73,7 +76,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -124,10 +127,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str|None = None, + colorsrc: str|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmapbox/selected/_marker.py b/plotly/graph_objs/choroplethmapbox/selected/_marker.py index a850c3b5f6..5932dbcd20 100644 --- a/plotly/graph_objs/choroplethmapbox/selected/_marker.py +++ b/plotly/graph_objs/choroplethmapbox/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -42,7 +45,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/choroplethmapbox/unselected/_marker.py b/plotly/graph_objs/choroplethmapbox/unselected/_marker.py index b751795d82..60cebf6c37 100644 --- a/plotly/graph_objs/choroplethmapbox/unselected/_marker.py +++ b/plotly/graph_objs/choroplethmapbox/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/cone/_colorbar.py b/plotly/graph_objs/cone/_colorbar.py index 3ae03d8b30..1b72c27636 100644 --- a/plotly/graph_objs/cone/_colorbar.py +++ b/plotly/graph_objs/cone/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/cone/_hoverlabel.py b/plotly/graph_objs/cone/_hoverlabel.py index ab647e8448..0e45c22762 100644 --- a/plotly/graph_objs/cone/_hoverlabel.py +++ b/plotly/graph_objs/cone/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/cone/_legendgrouptitle.py b/plotly/graph_objs/cone/_legendgrouptitle.py index e561a3c062..1c8fa198a7 100644 --- a/plotly/graph_objs/cone/_legendgrouptitle.py +++ b/plotly/graph_objs/cone/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/cone/_lighting.py b/plotly/graph_objs/cone/_lighting.py index eb99efca74..a358a18dea 100644 --- a/plotly/graph_objs/cone/_lighting.py +++ b/plotly/graph_objs/cone/_lighting.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -191,13 +194,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - ambient=None, - diffuse=None, - facenormalsepsilon=None, - fresnel=None, - roughness=None, - specular=None, - vertexnormalsepsilon=None, + ambient: int|float|None = None, + diffuse: int|float|None = None, + facenormalsepsilon: int|float|None = None, + fresnel: int|float|None = None, + roughness: int|float|None = None, + specular: int|float|None = None, + vertexnormalsepsilon: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/cone/_lightposition.py b/plotly/graph_objs/cone/_lightposition.py index f12f0806c2..0813235e7c 100644 --- a/plotly/graph_objs/cone/_lightposition.py +++ b/plotly/graph_objs/cone/_lightposition.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -89,9 +92,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float|None = None, + y: int|float|None = None, + z: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/cone/_stream.py b/plotly/graph_objs/cone/_stream.py index 8ddf0c4d6a..3351ce57bd 100644 --- a/plotly/graph_objs/cone/_stream.py +++ b/plotly/graph_objs/cone/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/cone/colorbar/_tickfont.py b/plotly/graph_objs/cone/colorbar/_tickfont.py index 1373ee6ee4..66249aa0ec 100644 --- a/plotly/graph_objs/cone/colorbar/_tickfont.py +++ b/plotly/graph_objs/cone/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/cone/colorbar/_tickformatstop.py b/plotly/graph_objs/cone/colorbar/_tickformatstop.py index e61601a95f..258b88f9f1 100644 --- a/plotly/graph_objs/cone/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/cone/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/cone/colorbar/_title.py b/plotly/graph_objs/cone/colorbar/_title.py index 256d1cc10c..d2f9849eda 100644 --- a/plotly/graph_objs/cone/colorbar/_title.py +++ b/plotly/graph_objs/cone/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/cone/colorbar/title/_font.py b/plotly/graph_objs/cone/colorbar/title/_font.py index b8b18198a9..edf6a5a93b 100644 --- a/plotly/graph_objs/cone/colorbar/title/_font.py +++ b/plotly/graph_objs/cone/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/cone/hoverlabel/_font.py b/plotly/graph_objs/cone/hoverlabel/_font.py index dfff5ce828..edcbe30f67 100644 --- a/plotly/graph_objs/cone/hoverlabel/_font.py +++ b/plotly/graph_objs/cone/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/cone/legendgrouptitle/_font.py b/plotly/graph_objs/cone/legendgrouptitle/_font.py index 9715c113c4..c78a9d058c 100644 --- a/plotly/graph_objs/cone/legendgrouptitle/_font.py +++ b/plotly/graph_objs/cone/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contour/_colorbar.py b/plotly/graph_objs/contour/_colorbar.py index 18213b2d73..1d56fed2c6 100644 --- a/plotly/graph_objs/contour/_colorbar.py +++ b/plotly/graph_objs/contour/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contour/_contours.py b/plotly/graph_objs/contour/_contours.py index ddd14823fe..556aa461fb 100644 --- a/plotly/graph_objs/contour/_contours.py +++ b/plotly/graph_objs/contour/_contours.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -331,17 +334,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - coloring=None, - end=None, - labelfont=None, - labelformat=None, - operation=None, - showlabels=None, - showlines=None, - size=None, - start=None, - type=None, - value=None, + coloring: Any|None = None, + end: int|float|None = None, + labelfont: None|None = None, + labelformat: str|None = None, + operation: Any|None = None, + showlabels: bool|None = None, + showlines: bool|None = None, + size: int|float|None = None, + start: int|float|None = None, + type: Any|None = None, + value: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contour/_hoverlabel.py b/plotly/graph_objs/contour/_hoverlabel.py index c652d5ee50..44aa1d79dc 100644 --- a/plotly/graph_objs/contour/_hoverlabel.py +++ b/plotly/graph_objs/contour/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contour/_legendgrouptitle.py b/plotly/graph_objs/contour/_legendgrouptitle.py index 3e95a2b939..b61faf9f14 100644 --- a/plotly/graph_objs/contour/_legendgrouptitle.py +++ b/plotly/graph_objs/contour/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contour/_line.py b/plotly/graph_objs/contour/_line.py index a15e6b2e03..69db0b5652 100644 --- a/plotly/graph_objs/contour/_line.py +++ b/plotly/graph_objs/contour/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -129,10 +132,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - smoothing=None, - width=None, + color: str|None = None, + dash: str|None = None, + smoothing: int|float|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contour/_stream.py b/plotly/graph_objs/contour/_stream.py index a73aa60d32..6960a747ac 100644 --- a/plotly/graph_objs/contour/_stream.py +++ b/plotly/graph_objs/contour/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contour/_textfont.py b/plotly/graph_objs/contour/_textfont.py index b775fd8081..b9bd974385 100644 --- a/plotly/graph_objs/contour/_textfont.py +++ b/plotly/graph_objs/contour/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contour/colorbar/_tickfont.py b/plotly/graph_objs/contour/colorbar/_tickfont.py index 397464ab7d..429cd69d66 100644 --- a/plotly/graph_objs/contour/colorbar/_tickfont.py +++ b/plotly/graph_objs/contour/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contour/colorbar/_tickformatstop.py b/plotly/graph_objs/contour/colorbar/_tickformatstop.py index 1e7b8da75f..be8f48cf76 100644 --- a/plotly/graph_objs/contour/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/contour/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contour/colorbar/_title.py b/plotly/graph_objs/contour/colorbar/_title.py index 2739dc6610..2a88713971 100644 --- a/plotly/graph_objs/contour/colorbar/_title.py +++ b/plotly/graph_objs/contour/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contour/colorbar/title/_font.py b/plotly/graph_objs/contour/colorbar/title/_font.py index c23f902985..69e44c9e48 100644 --- a/plotly/graph_objs/contour/colorbar/title/_font.py +++ b/plotly/graph_objs/contour/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contour/contours/_labelfont.py b/plotly/graph_objs/contour/contours/_labelfont.py index eb33ef8336..11469513fc 100644 --- a/plotly/graph_objs/contour/contours/_labelfont.py +++ b/plotly/graph_objs/contour/contours/_labelfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contour/hoverlabel/_font.py b/plotly/graph_objs/contour/hoverlabel/_font.py index 405acc2609..e4d5c1549f 100644 --- a/plotly/graph_objs/contour/hoverlabel/_font.py +++ b/plotly/graph_objs/contour/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contour/legendgrouptitle/_font.py b/plotly/graph_objs/contour/legendgrouptitle/_font.py index f556643f50..d3b6b13639 100644 --- a/plotly/graph_objs/contour/legendgrouptitle/_font.py +++ b/plotly/graph_objs/contour/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contourcarpet/_colorbar.py b/plotly/graph_objs/contourcarpet/_colorbar.py index 6411bc057d..49ca60fcc1 100644 --- a/plotly/graph_objs/contourcarpet/_colorbar.py +++ b/plotly/graph_objs/contourcarpet/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contourcarpet/_contours.py b/plotly/graph_objs/contourcarpet/_contours.py index 3fc1757ec7..00100a0df8 100644 --- a/plotly/graph_objs/contourcarpet/_contours.py +++ b/plotly/graph_objs/contourcarpet/_contours.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -329,17 +332,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - coloring=None, - end=None, - labelfont=None, - labelformat=None, - operation=None, - showlabels=None, - showlines=None, - size=None, - start=None, - type=None, - value=None, + coloring: Any|None = None, + end: int|float|None = None, + labelfont: None|None = None, + labelformat: str|None = None, + operation: Any|None = None, + showlabels: bool|None = None, + showlines: bool|None = None, + size: int|float|None = None, + start: int|float|None = None, + type: Any|None = None, + value: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contourcarpet/_legendgrouptitle.py b/plotly/graph_objs/contourcarpet/_legendgrouptitle.py index eeca18043c..fd25f5b497 100644 --- a/plotly/graph_objs/contourcarpet/_legendgrouptitle.py +++ b/plotly/graph_objs/contourcarpet/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contourcarpet/_line.py b/plotly/graph_objs/contourcarpet/_line.py index 905d0ef2a1..18fe3c504b 100644 --- a/plotly/graph_objs/contourcarpet/_line.py +++ b/plotly/graph_objs/contourcarpet/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -129,10 +132,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - smoothing=None, - width=None, + color: str|None = None, + dash: str|None = None, + smoothing: int|float|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contourcarpet/_stream.py b/plotly/graph_objs/contourcarpet/_stream.py index 4cd9e5e940..bfd6424310 100644 --- a/plotly/graph_objs/contourcarpet/_stream.py +++ b/plotly/graph_objs/contourcarpet/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contourcarpet/colorbar/_tickfont.py b/plotly/graph_objs/contourcarpet/colorbar/_tickfont.py index 81e5570198..8b884b8a38 100644 --- a/plotly/graph_objs/contourcarpet/colorbar/_tickfont.py +++ b/plotly/graph_objs/contourcarpet/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contourcarpet/colorbar/_tickformatstop.py b/plotly/graph_objs/contourcarpet/colorbar/_tickformatstop.py index 7a847d7d60..a16e7c3af4 100644 --- a/plotly/graph_objs/contourcarpet/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/contourcarpet/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contourcarpet/colorbar/_title.py b/plotly/graph_objs/contourcarpet/colorbar/_title.py index 5a5342edd4..2fe7a571e2 100644 --- a/plotly/graph_objs/contourcarpet/colorbar/_title.py +++ b/plotly/graph_objs/contourcarpet/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contourcarpet/colorbar/title/_font.py b/plotly/graph_objs/contourcarpet/colorbar/title/_font.py index c9397f355c..a8cea1eb3a 100644 --- a/plotly/graph_objs/contourcarpet/colorbar/title/_font.py +++ b/plotly/graph_objs/contourcarpet/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contourcarpet/contours/_labelfont.py b/plotly/graph_objs/contourcarpet/contours/_labelfont.py index b48d5f9e80..2c5ad10d79 100644 --- a/plotly/graph_objs/contourcarpet/contours/_labelfont.py +++ b/plotly/graph_objs/contourcarpet/contours/_labelfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/contourcarpet/legendgrouptitle/_font.py b/plotly/graph_objs/contourcarpet/legendgrouptitle/_font.py index 02a3dd7c4a..550fa9a76b 100644 --- a/plotly/graph_objs/contourcarpet/legendgrouptitle/_font.py +++ b/plotly/graph_objs/contourcarpet/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymap/_colorbar.py b/plotly/graph_objs/densitymap/_colorbar.py index 0b762b891a..e5070a2f35 100644 --- a/plotly/graph_objs/densitymap/_colorbar.py +++ b/plotly/graph_objs/densitymap/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -853,7 +856,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -894,7 +897,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1395,55 +1398,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymap/_hoverlabel.py b/plotly/graph_objs/densitymap/_hoverlabel.py index 16e67aa7e0..ed57357bed 100644 --- a/plotly/graph_objs/densitymap/_hoverlabel.py +++ b/plotly/graph_objs/densitymap/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymap/_legendgrouptitle.py b/plotly/graph_objs/densitymap/_legendgrouptitle.py index 131192dcbe..3c03edb525 100644 --- a/plotly/graph_objs/densitymap/_legendgrouptitle.py +++ b/plotly/graph_objs/densitymap/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymap/_stream.py b/plotly/graph_objs/densitymap/_stream.py index f8d9a95828..49e576c6aa 100644 --- a/plotly/graph_objs/densitymap/_stream.py +++ b/plotly/graph_objs/densitymap/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymap/colorbar/_tickfont.py b/plotly/graph_objs/densitymap/colorbar/_tickfont.py index 3db18a1548..7ad4c19dfc 100644 --- a/plotly/graph_objs/densitymap/colorbar/_tickfont.py +++ b/plotly/graph_objs/densitymap/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymap/colorbar/_tickformatstop.py b/plotly/graph_objs/densitymap/colorbar/_tickformatstop.py index b2222d7c16..7c1d3c3193 100644 --- a/plotly/graph_objs/densitymap/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/densitymap/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymap/colorbar/_title.py b/plotly/graph_objs/densitymap/colorbar/_title.py index 456313aa05..4883908f56 100644 --- a/plotly/graph_objs/densitymap/colorbar/_title.py +++ b/plotly/graph_objs/densitymap/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymap/colorbar/title/_font.py b/plotly/graph_objs/densitymap/colorbar/title/_font.py index 75ef6b308e..610dea3a53 100644 --- a/plotly/graph_objs/densitymap/colorbar/title/_font.py +++ b/plotly/graph_objs/densitymap/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymap/hoverlabel/_font.py b/plotly/graph_objs/densitymap/hoverlabel/_font.py index 7c9fe0f01a..5f4c2ad379 100644 --- a/plotly/graph_objs/densitymap/hoverlabel/_font.py +++ b/plotly/graph_objs/densitymap/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymap/legendgrouptitle/_font.py b/plotly/graph_objs/densitymap/legendgrouptitle/_font.py index 5ee5cdd294..0e110e2e30 100644 --- a/plotly/graph_objs/densitymap/legendgrouptitle/_font.py +++ b/plotly/graph_objs/densitymap/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymapbox/_colorbar.py b/plotly/graph_objs/densitymapbox/_colorbar.py index cb07420d61..3f5c83331d 100644 --- a/plotly/graph_objs/densitymapbox/_colorbar.py +++ b/plotly/graph_objs/densitymapbox/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymapbox/_hoverlabel.py b/plotly/graph_objs/densitymapbox/_hoverlabel.py index b8c588211c..5e35e5273c 100644 --- a/plotly/graph_objs/densitymapbox/_hoverlabel.py +++ b/plotly/graph_objs/densitymapbox/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymapbox/_legendgrouptitle.py b/plotly/graph_objs/densitymapbox/_legendgrouptitle.py index ee97b71b57..287d7b6f54 100644 --- a/plotly/graph_objs/densitymapbox/_legendgrouptitle.py +++ b/plotly/graph_objs/densitymapbox/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymapbox/_stream.py b/plotly/graph_objs/densitymapbox/_stream.py index 6dfcd0ed36..5be09a5518 100644 --- a/plotly/graph_objs/densitymapbox/_stream.py +++ b/plotly/graph_objs/densitymapbox/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymapbox/colorbar/_tickfont.py b/plotly/graph_objs/densitymapbox/colorbar/_tickfont.py index d5e16637b5..5631e675aa 100644 --- a/plotly/graph_objs/densitymapbox/colorbar/_tickfont.py +++ b/plotly/graph_objs/densitymapbox/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymapbox/colorbar/_tickformatstop.py b/plotly/graph_objs/densitymapbox/colorbar/_tickformatstop.py index 511d3b6873..4ba5553640 100644 --- a/plotly/graph_objs/densitymapbox/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/densitymapbox/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymapbox/colorbar/_title.py b/plotly/graph_objs/densitymapbox/colorbar/_title.py index 7aa61eec26..f2f998f954 100644 --- a/plotly/graph_objs/densitymapbox/colorbar/_title.py +++ b/plotly/graph_objs/densitymapbox/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymapbox/colorbar/title/_font.py b/plotly/graph_objs/densitymapbox/colorbar/title/_font.py index db94eeb312..5fca3e869f 100644 --- a/plotly/graph_objs/densitymapbox/colorbar/title/_font.py +++ b/plotly/graph_objs/densitymapbox/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymapbox/hoverlabel/_font.py b/plotly/graph_objs/densitymapbox/hoverlabel/_font.py index cd4478ab71..e24ab76e5b 100644 --- a/plotly/graph_objs/densitymapbox/hoverlabel/_font.py +++ b/plotly/graph_objs/densitymapbox/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/densitymapbox/legendgrouptitle/_font.py b/plotly/graph_objs/densitymapbox/legendgrouptitle/_font.py index 181af8b675..d811691af0 100644 --- a/plotly/graph_objs/densitymapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objs/densitymapbox/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/_connector.py b/plotly/graph_objs/funnel/_connector.py index 2b77e1a272..49b2b22488 100644 --- a/plotly/graph_objs/funnel/_connector.py +++ b/plotly/graph_objs/funnel/_connector.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -92,9 +95,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fillcolor=None, - line=None, - visible=None, + fillcolor: str|None = None, + line: None|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/_hoverlabel.py b/plotly/graph_objs/funnel/_hoverlabel.py index 5aa43ea9ed..dfce0b7609 100644 --- a/plotly/graph_objs/funnel/_hoverlabel.py +++ b/plotly/graph_objs/funnel/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/_insidetextfont.py b/plotly/graph_objs/funnel/_insidetextfont.py index 1e774dfc27..0bf00b2626 100644 --- a/plotly/graph_objs/funnel/_insidetextfont.py +++ b/plotly/graph_objs/funnel/_insidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/_legendgrouptitle.py b/plotly/graph_objs/funnel/_legendgrouptitle.py index 712d4171cb..0120957058 100644 --- a/plotly/graph_objs/funnel/_legendgrouptitle.py +++ b/plotly/graph_objs/funnel/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/_marker.py b/plotly/graph_objs/funnel/_marker.py index 776706bb03..39e44a82fa 100644 --- a/plotly/graph_objs/funnel/_marker.py +++ b/plotly/graph_objs/funnel/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -155,7 +158,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -319,7 +322,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -484,21 +487,21 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - line=None, - opacity=None, - opacitysrc=None, - reversescale=None, - showscale=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + line: None|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/_outsidetextfont.py b/plotly/graph_objs/funnel/_outsidetextfont.py index e783f3aed2..6f93af507c 100644 --- a/plotly/graph_objs/funnel/_outsidetextfont.py +++ b/plotly/graph_objs/funnel/_outsidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/_stream.py b/plotly/graph_objs/funnel/_stream.py index d81ccdcafd..6b87bf41e9 100644 --- a/plotly/graph_objs/funnel/_stream.py +++ b/plotly/graph_objs/funnel/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/_textfont.py b/plotly/graph_objs/funnel/_textfont.py index a26b6a6a08..7137eb022b 100644 --- a/plotly/graph_objs/funnel/_textfont.py +++ b/plotly/graph_objs/funnel/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/connector/_line.py b/plotly/graph_objs/funnel/connector/_line.py index dad6d72668..67cec7b2ce 100644 --- a/plotly/graph_objs/funnel/connector/_line.py +++ b/plotly/graph_objs/funnel/connector/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -99,9 +102,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str|None = None, + dash: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/hoverlabel/_font.py b/plotly/graph_objs/funnel/hoverlabel/_font.py index 472ec9c521..c3b25972da 100644 --- a/plotly/graph_objs/funnel/hoverlabel/_font.py +++ b/plotly/graph_objs/funnel/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/legendgrouptitle/_font.py b/plotly/graph_objs/funnel/legendgrouptitle/_font.py index 9ce21e1a0a..7b834aa338 100644 --- a/plotly/graph_objs/funnel/legendgrouptitle/_font.py +++ b/plotly/graph_objs/funnel/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/marker/_colorbar.py b/plotly/graph_objs/funnel/marker/_colorbar.py index ccf7c5c910..3e533e0519 100644 --- a/plotly/graph_objs/funnel/marker/_colorbar.py +++ b/plotly/graph_objs/funnel/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/marker/_line.py b/plotly/graph_objs/funnel/marker/_line.py index f01abc6deb..21e9a0131a 100644 --- a/plotly/graph_objs/funnel/marker/_line.py +++ b/plotly/graph_objs/funnel/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -156,7 +159,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -303,7 +306,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -417,18 +420,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorscale=None, - colorsrc=None, - reversescale=None, - width=None, - widthsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + reversescale: bool|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/marker/colorbar/_tickfont.py b/plotly/graph_objs/funnel/marker/colorbar/_tickfont.py index 2983bd7ef0..8c004b72e8 100644 --- a/plotly/graph_objs/funnel/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/funnel/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/funnel/marker/colorbar/_tickformatstop.py index 3dfa91b3c0..77ff2f4da5 100644 --- a/plotly/graph_objs/funnel/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/funnel/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/marker/colorbar/_title.py b/plotly/graph_objs/funnel/marker/colorbar/_title.py index 19b071bd11..27368a0899 100644 --- a/plotly/graph_objs/funnel/marker/colorbar/_title.py +++ b/plotly/graph_objs/funnel/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnel/marker/colorbar/title/_font.py b/plotly/graph_objs/funnel/marker/colorbar/title/_font.py index edb1544943..d391f69f22 100644 --- a/plotly/graph_objs/funnel/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/funnel/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnelarea/_domain.py b/plotly/graph_objs/funnelarea/_domain.py index 25a6119bc9..88806939b2 100644 --- a/plotly/graph_objs/funnelarea/_domain.py +++ b/plotly/graph_objs/funnelarea/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnelarea/_hoverlabel.py b/plotly/graph_objs/funnelarea/_hoverlabel.py index 6e05d686a0..36efbd2702 100644 --- a/plotly/graph_objs/funnelarea/_hoverlabel.py +++ b/plotly/graph_objs/funnelarea/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnelarea/_insidetextfont.py b/plotly/graph_objs/funnelarea/_insidetextfont.py index 2b0a3a2bb5..fba9d717c7 100644 --- a/plotly/graph_objs/funnelarea/_insidetextfont.py +++ b/plotly/graph_objs/funnelarea/_insidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnelarea/_legendgrouptitle.py b/plotly/graph_objs/funnelarea/_legendgrouptitle.py index 232623b354..b983e2b558 100644 --- a/plotly/graph_objs/funnelarea/_legendgrouptitle.py +++ b/plotly/graph_objs/funnelarea/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnelarea/_marker.py b/plotly/graph_objs/funnelarea/_marker.py index e697f57b30..7ac37dad9c 100644 --- a/plotly/graph_objs/funnelarea/_marker.py +++ b/plotly/graph_objs/funnelarea/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -25,7 +28,7 @@ def colors(self): Returns ------- - numpy.ndarray + NDArray """ return self['colors'] @@ -117,10 +120,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - colors=None, - colorssrc=None, - line=None, - pattern=None, + colors: NDArray|None = None, + colorssrc: str|None = None, + line: None|None = None, + pattern: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnelarea/_stream.py b/plotly/graph_objs/funnelarea/_stream.py index 004df1cbc3..43893f16ac 100644 --- a/plotly/graph_objs/funnelarea/_stream.py +++ b/plotly/graph_objs/funnelarea/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnelarea/_textfont.py b/plotly/graph_objs/funnelarea/_textfont.py index 5d791ec329..e1635014f1 100644 --- a/plotly/graph_objs/funnelarea/_textfont.py +++ b/plotly/graph_objs/funnelarea/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnelarea/_title.py b/plotly/graph_objs/funnelarea/_title.py index 874cd83fd4..d96b6b8f47 100644 --- a/plotly/graph_objs/funnelarea/_title.py +++ b/plotly/graph_objs/funnelarea/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -93,9 +96,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - position=None, - text=None, + font: None|None = None, + position: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnelarea/hoverlabel/_font.py b/plotly/graph_objs/funnelarea/hoverlabel/_font.py index c21e62765d..87c11fec65 100644 --- a/plotly/graph_objs/funnelarea/hoverlabel/_font.py +++ b/plotly/graph_objs/funnelarea/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnelarea/legendgrouptitle/_font.py b/plotly/graph_objs/funnelarea/legendgrouptitle/_font.py index 8b5b8a1907..772f09b045 100644 --- a/plotly/graph_objs/funnelarea/legendgrouptitle/_font.py +++ b/plotly/graph_objs/funnelarea/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnelarea/marker/_line.py b/plotly/graph_objs/funnelarea/marker/_line.py index 3035879f66..cae8b29a58 100644 --- a/plotly/graph_objs/funnelarea/marker/_line.py +++ b/plotly/graph_objs/funnelarea/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -30,7 +33,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -71,7 +74,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -119,10 +122,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str|None = None, + colorsrc: str|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnelarea/marker/_pattern.py b/plotly/graph_objs/funnelarea/marker/_pattern.py index a5c9a0d4a9..d6c4b8d2ec 100644 --- a/plotly/graph_objs/funnelarea/marker/_pattern.py +++ b/plotly/graph_objs/funnelarea/marker/_pattern.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -32,7 +35,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -80,7 +83,7 @@ def fgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['fgcolor'] @@ -166,7 +169,7 @@ def shape(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['shape'] @@ -208,7 +211,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -252,7 +255,7 @@ def solidity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['solidity'] @@ -334,18 +337,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bgcolorsrc=None, - fgcolor=None, - fgcolorsrc=None, - fgopacity=None, - fillmode=None, - shape=None, - shapesrc=None, - size=None, - sizesrc=None, - solidity=None, - soliditysrc=None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + fgcolor: str|None = None, + fgcolorsrc: str|None = None, + fgopacity: int|float|None = None, + fillmode: Any|None = None, + shape: Any|None = None, + shapesrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + solidity: int|float|None = None, + soliditysrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/funnelarea/title/_font.py b/plotly/graph_objs/funnelarea/title/_font.py index 6942a2d535..7773f6e5fa 100644 --- a/plotly/graph_objs/funnelarea/title/_font.py +++ b/plotly/graph_objs/funnelarea/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/heatmap/_colorbar.py b/plotly/graph_objs/heatmap/_colorbar.py index ff4d297790..53e95b8703 100644 --- a/plotly/graph_objs/heatmap/_colorbar.py +++ b/plotly/graph_objs/heatmap/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/heatmap/_hoverlabel.py b/plotly/graph_objs/heatmap/_hoverlabel.py index 5e4bb089b4..ace0924d79 100644 --- a/plotly/graph_objs/heatmap/_hoverlabel.py +++ b/plotly/graph_objs/heatmap/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/heatmap/_legendgrouptitle.py b/plotly/graph_objs/heatmap/_legendgrouptitle.py index e76d155105..b38405a2eb 100644 --- a/plotly/graph_objs/heatmap/_legendgrouptitle.py +++ b/plotly/graph_objs/heatmap/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/heatmap/_stream.py b/plotly/graph_objs/heatmap/_stream.py index 6ebaf4a73f..45c354f172 100644 --- a/plotly/graph_objs/heatmap/_stream.py +++ b/plotly/graph_objs/heatmap/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/heatmap/_textfont.py b/plotly/graph_objs/heatmap/_textfont.py index 446389478b..02fd8ea6cc 100644 --- a/plotly/graph_objs/heatmap/_textfont.py +++ b/plotly/graph_objs/heatmap/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/heatmap/colorbar/_tickfont.py b/plotly/graph_objs/heatmap/colorbar/_tickfont.py index 6425ab298e..f14bc51e58 100644 --- a/plotly/graph_objs/heatmap/colorbar/_tickfont.py +++ b/plotly/graph_objs/heatmap/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/heatmap/colorbar/_tickformatstop.py b/plotly/graph_objs/heatmap/colorbar/_tickformatstop.py index bf1fb33b8c..237cbf0aaf 100644 --- a/plotly/graph_objs/heatmap/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/heatmap/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/heatmap/colorbar/_title.py b/plotly/graph_objs/heatmap/colorbar/_title.py index bd02c80d3f..4a6e28e970 100644 --- a/plotly/graph_objs/heatmap/colorbar/_title.py +++ b/plotly/graph_objs/heatmap/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/heatmap/colorbar/title/_font.py b/plotly/graph_objs/heatmap/colorbar/title/_font.py index 72994a1a4e..5ae6bd5be5 100644 --- a/plotly/graph_objs/heatmap/colorbar/title/_font.py +++ b/plotly/graph_objs/heatmap/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/heatmap/hoverlabel/_font.py b/plotly/graph_objs/heatmap/hoverlabel/_font.py index 8a8ed1d0c6..ffecec071b 100644 --- a/plotly/graph_objs/heatmap/hoverlabel/_font.py +++ b/plotly/graph_objs/heatmap/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/heatmap/legendgrouptitle/_font.py b/plotly/graph_objs/heatmap/legendgrouptitle/_font.py index 2301511fce..5eac538549 100644 --- a/plotly/graph_objs/heatmap/legendgrouptitle/_font.py +++ b/plotly/graph_objs/heatmap/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/_cumulative.py b/plotly/graph_objs/histogram/_cumulative.py index 144d95974f..c218781cf1 100644 --- a/plotly/graph_objs/histogram/_cumulative.py +++ b/plotly/graph_objs/histogram/_cumulative.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -118,9 +121,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - currentbin=None, - direction=None, - enabled=None, + currentbin: Any|None = None, + direction: Any|None = None, + enabled: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/_error_x.py b/plotly/graph_objs/histogram/_error_x.py index 503cacf397..134ac9a958 100644 --- a/plotly/graph_objs/histogram/_error_x.py +++ b/plotly/graph_objs/histogram/_error_x.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -25,7 +28,7 @@ def array(self): Returns ------- - numpy.ndarray + NDArray """ return self['array'] @@ -47,7 +50,7 @@ def arrayminus(self): Returns ------- - numpy.ndarray + NDArray """ return self['arrayminus'] @@ -394,21 +397,21 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - array=None, - arrayminus=None, - arrayminussrc=None, - arraysrc=None, - color=None, - copy_ystyle=None, - symmetric=None, - thickness=None, - traceref=None, - tracerefminus=None, - type=None, - value=None, - valueminus=None, - visible=None, - width=None, + array: NDArray|None = None, + arrayminus: NDArray|None = None, + arrayminussrc: str|None = None, + arraysrc: str|None = None, + color: str|None = None, + copy_ystyle: bool|None = None, + symmetric: bool|None = None, + thickness: int|float|None = None, + traceref: int|None = None, + tracerefminus: int|None = None, + type: Any|None = None, + value: int|float|None = None, + valueminus: int|float|None = None, + visible: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/_error_y.py b/plotly/graph_objs/histogram/_error_y.py index e82aa1249c..fb2e2b11c7 100644 --- a/plotly/graph_objs/histogram/_error_y.py +++ b/plotly/graph_objs/histogram/_error_y.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -25,7 +28,7 @@ def array(self): Returns ------- - numpy.ndarray + NDArray """ return self['array'] @@ -47,7 +50,7 @@ def arrayminus(self): Returns ------- - numpy.ndarray + NDArray """ return self['arrayminus'] @@ -374,20 +377,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - array=None, - arrayminus=None, - arrayminussrc=None, - arraysrc=None, - color=None, - symmetric=None, - thickness=None, - traceref=None, - tracerefminus=None, - type=None, - value=None, - valueminus=None, - visible=None, - width=None, + array: NDArray|None = None, + arrayminus: NDArray|None = None, + arrayminussrc: str|None = None, + arraysrc: str|None = None, + color: str|None = None, + symmetric: bool|None = None, + thickness: int|float|None = None, + traceref: int|None = None, + tracerefminus: int|None = None, + type: Any|None = None, + value: int|float|None = None, + valueminus: int|float|None = None, + visible: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/_hoverlabel.py b/plotly/graph_objs/histogram/_hoverlabel.py index 329afedc23..260725d902 100644 --- a/plotly/graph_objs/histogram/_hoverlabel.py +++ b/plotly/graph_objs/histogram/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/_insidetextfont.py b/plotly/graph_objs/histogram/_insidetextfont.py index 9f958539ce..27690124c7 100644 --- a/plotly/graph_objs/histogram/_insidetextfont.py +++ b/plotly/graph_objs/histogram/_insidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/_legendgrouptitle.py b/plotly/graph_objs/histogram/_legendgrouptitle.py index ed7fb875e6..9a3e72a0a6 100644 --- a/plotly/graph_objs/histogram/_legendgrouptitle.py +++ b/plotly/graph_objs/histogram/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/_marker.py b/plotly/graph_objs/histogram/_marker.py index 5029590cbc..0c0c866af0 100644 --- a/plotly/graph_objs/histogram/_marker.py +++ b/plotly/graph_objs/histogram/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -155,7 +158,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -342,7 +345,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -538,23 +541,23 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - cornerradius=None, - line=None, - opacity=None, - opacitysrc=None, - pattern=None, - reversescale=None, - showscale=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + cornerradius: Any|None = None, + line: None|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + pattern: None|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/_outsidetextfont.py b/plotly/graph_objs/histogram/_outsidetextfont.py index c86f801d5e..0bbe0332f4 100644 --- a/plotly/graph_objs/histogram/_outsidetextfont.py +++ b/plotly/graph_objs/histogram/_outsidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/_selected.py b/plotly/graph_objs/histogram/_selected.py index e66365988a..b49b736662 100644 --- a/plotly/graph_objs/histogram/_selected.py +++ b/plotly/graph_objs/histogram/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/_stream.py b/plotly/graph_objs/histogram/_stream.py index a2c6bfa0fb..b8438a3a04 100644 --- a/plotly/graph_objs/histogram/_stream.py +++ b/plotly/graph_objs/histogram/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/_textfont.py b/plotly/graph_objs/histogram/_textfont.py index 41245bd0f2..b55389f89a 100644 --- a/plotly/graph_objs/histogram/_textfont.py +++ b/plotly/graph_objs/histogram/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/_unselected.py b/plotly/graph_objs/histogram/_unselected.py index 7550c80e15..e9cfd42cf9 100644 --- a/plotly/graph_objs/histogram/_unselected.py +++ b/plotly/graph_objs/histogram/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/_xbins.py b/plotly/graph_objs/histogram/_xbins.py index 2ba0745633..c57591a0ba 100644 --- a/plotly/graph_objs/histogram/_xbins.py +++ b/plotly/graph_objs/histogram/_xbins.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -142,9 +145,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - end=None, - size=None, - start=None, + end: Any|None = None, + size: Any|None = None, + start: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/_ybins.py b/plotly/graph_objs/histogram/_ybins.py index 0e07cf29ff..15c4337f53 100644 --- a/plotly/graph_objs/histogram/_ybins.py +++ b/plotly/graph_objs/histogram/_ybins.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -142,9 +145,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - end=None, - size=None, - start=None, + end: Any|None = None, + size: Any|None = None, + start: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/hoverlabel/_font.py b/plotly/graph_objs/histogram/hoverlabel/_font.py index 22c249279c..760812c50d 100644 --- a/plotly/graph_objs/histogram/hoverlabel/_font.py +++ b/plotly/graph_objs/histogram/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/legendgrouptitle/_font.py b/plotly/graph_objs/histogram/legendgrouptitle/_font.py index 4a53169954..de2ab99704 100644 --- a/plotly/graph_objs/histogram/legendgrouptitle/_font.py +++ b/plotly/graph_objs/histogram/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/marker/_colorbar.py b/plotly/graph_objs/histogram/marker/_colorbar.py index 0946649ded..6237997013 100644 --- a/plotly/graph_objs/histogram/marker/_colorbar.py +++ b/plotly/graph_objs/histogram/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/marker/_line.py b/plotly/graph_objs/histogram/marker/_line.py index a021733aca..004c9b5da8 100644 --- a/plotly/graph_objs/histogram/marker/_line.py +++ b/plotly/graph_objs/histogram/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -156,7 +159,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -303,7 +306,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -417,18 +420,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorscale=None, - colorsrc=None, - reversescale=None, - width=None, - widthsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + reversescale: bool|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/marker/_pattern.py b/plotly/graph_objs/histogram/marker/_pattern.py index f71ab3e254..dc5bc96f66 100644 --- a/plotly/graph_objs/histogram/marker/_pattern.py +++ b/plotly/graph_objs/histogram/marker/_pattern.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -32,7 +35,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -80,7 +83,7 @@ def fgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['fgcolor'] @@ -166,7 +169,7 @@ def shape(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['shape'] @@ -208,7 +211,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -252,7 +255,7 @@ def solidity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['solidity'] @@ -334,18 +337,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bgcolorsrc=None, - fgcolor=None, - fgcolorsrc=None, - fgopacity=None, - fillmode=None, - shape=None, - shapesrc=None, - size=None, - sizesrc=None, - solidity=None, - soliditysrc=None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + fgcolor: str|None = None, + fgcolorsrc: str|None = None, + fgopacity: int|float|None = None, + fillmode: Any|None = None, + shape: Any|None = None, + shapesrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + solidity: int|float|None = None, + soliditysrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/marker/colorbar/_tickfont.py b/plotly/graph_objs/histogram/marker/colorbar/_tickfont.py index 42160891c5..a1b4fcb766 100644 --- a/plotly/graph_objs/histogram/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/histogram/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/histogram/marker/colorbar/_tickformatstop.py index 010ea522ac..0986d4b3ba 100644 --- a/plotly/graph_objs/histogram/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/histogram/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/marker/colorbar/_title.py b/plotly/graph_objs/histogram/marker/colorbar/_title.py index 0aee0220da..edf8bc9d76 100644 --- a/plotly/graph_objs/histogram/marker/colorbar/_title.py +++ b/plotly/graph_objs/histogram/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/marker/colorbar/title/_font.py b/plotly/graph_objs/histogram/marker/colorbar/title/_font.py index a7903c3b02..5e7095c685 100644 --- a/plotly/graph_objs/histogram/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/histogram/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/selected/_marker.py b/plotly/graph_objs/histogram/selected/_marker.py index 7c65c6a666..8d9e5a66b2 100644 --- a/plotly/graph_objs/histogram/selected/_marker.py +++ b/plotly/graph_objs/histogram/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, + color: str|None = None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/selected/_textfont.py b/plotly/graph_objs/histogram/selected/_textfont.py index 57f720174a..9143a6a649 100644 --- a/plotly/graph_objs/histogram/selected/_textfont.py +++ b/plotly/graph_objs/histogram/selected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -46,7 +49,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/unselected/_marker.py b/plotly/graph_objs/histogram/unselected/_marker.py index 4d6df06791..991c16f833 100644 --- a/plotly/graph_objs/histogram/unselected/_marker.py +++ b/plotly/graph_objs/histogram/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -72,8 +75,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, + color: str|None = None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram/unselected/_textfont.py b/plotly/graph_objs/histogram/unselected/_textfont.py index e99977b01c..eb5b2d192f 100644 --- a/plotly/graph_objs/histogram/unselected/_textfont.py +++ b/plotly/graph_objs/histogram/unselected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -48,7 +51,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2d/_colorbar.py b/plotly/graph_objs/histogram2d/_colorbar.py index cae05e5d76..d981eac908 100644 --- a/plotly/graph_objs/histogram2d/_colorbar.py +++ b/plotly/graph_objs/histogram2d/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2d/_hoverlabel.py b/plotly/graph_objs/histogram2d/_hoverlabel.py index 651ec5d100..3cac924567 100644 --- a/plotly/graph_objs/histogram2d/_hoverlabel.py +++ b/plotly/graph_objs/histogram2d/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2d/_legendgrouptitle.py b/plotly/graph_objs/histogram2d/_legendgrouptitle.py index 08c1584d90..6960ec326f 100644 --- a/plotly/graph_objs/histogram2d/_legendgrouptitle.py +++ b/plotly/graph_objs/histogram2d/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2d/_marker.py b/plotly/graph_objs/histogram2d/_marker.py index 793cb3a5b9..ceb0d50c5f 100644 --- a/plotly/graph_objs/histogram2d/_marker.py +++ b/plotly/graph_objs/histogram2d/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -24,7 +27,7 @@ def color(self): Returns ------- - numpy.ndarray + NDArray """ return self['color'] @@ -65,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, + color: NDArray|None = None, + colorsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2d/_stream.py b/plotly/graph_objs/histogram2d/_stream.py index 15df2de54a..b2d1585a90 100644 --- a/plotly/graph_objs/histogram2d/_stream.py +++ b/plotly/graph_objs/histogram2d/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2d/_textfont.py b/plotly/graph_objs/histogram2d/_textfont.py index 35ac4d1142..1caedc00ed 100644 --- a/plotly/graph_objs/histogram2d/_textfont.py +++ b/plotly/graph_objs/histogram2d/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2d/_xbins.py b/plotly/graph_objs/histogram2d/_xbins.py index 7dc96caa21..5e8eb060f0 100644 --- a/plotly/graph_objs/histogram2d/_xbins.py +++ b/plotly/graph_objs/histogram2d/_xbins.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -127,9 +130,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - end=None, - size=None, - start=None, + end: Any|None = None, + size: Any|None = None, + start: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2d/_ybins.py b/plotly/graph_objs/histogram2d/_ybins.py index 6cbb88c9e4..61ea2d9cc9 100644 --- a/plotly/graph_objs/histogram2d/_ybins.py +++ b/plotly/graph_objs/histogram2d/_ybins.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -127,9 +130,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - end=None, - size=None, - start=None, + end: Any|None = None, + size: Any|None = None, + start: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2d/colorbar/_tickfont.py b/plotly/graph_objs/histogram2d/colorbar/_tickfont.py index 47038d8290..bb9e864ba2 100644 --- a/plotly/graph_objs/histogram2d/colorbar/_tickfont.py +++ b/plotly/graph_objs/histogram2d/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2d/colorbar/_tickformatstop.py b/plotly/graph_objs/histogram2d/colorbar/_tickformatstop.py index 0a7fc545e9..e01984ab16 100644 --- a/plotly/graph_objs/histogram2d/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/histogram2d/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2d/colorbar/_title.py b/plotly/graph_objs/histogram2d/colorbar/_title.py index eb2ea50efe..285d3d03d2 100644 --- a/plotly/graph_objs/histogram2d/colorbar/_title.py +++ b/plotly/graph_objs/histogram2d/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2d/colorbar/title/_font.py b/plotly/graph_objs/histogram2d/colorbar/title/_font.py index 15be36229d..9418d31b9a 100644 --- a/plotly/graph_objs/histogram2d/colorbar/title/_font.py +++ b/plotly/graph_objs/histogram2d/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2d/hoverlabel/_font.py b/plotly/graph_objs/histogram2d/hoverlabel/_font.py index 00b0ae3b93..4bea8c8553 100644 --- a/plotly/graph_objs/histogram2d/hoverlabel/_font.py +++ b/plotly/graph_objs/histogram2d/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2d/legendgrouptitle/_font.py b/plotly/graph_objs/histogram2d/legendgrouptitle/_font.py index c7b1f86a47..aa6cc4985f 100644 --- a/plotly/graph_objs/histogram2d/legendgrouptitle/_font.py +++ b/plotly/graph_objs/histogram2d/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/_colorbar.py b/plotly/graph_objs/histogram2dcontour/_colorbar.py index a93633c8c8..e08434b009 100644 --- a/plotly/graph_objs/histogram2dcontour/_colorbar.py +++ b/plotly/graph_objs/histogram2dcontour/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/_contours.py b/plotly/graph_objs/histogram2dcontour/_contours.py index d3b90107ff..5e6156be03 100644 --- a/plotly/graph_objs/histogram2dcontour/_contours.py +++ b/plotly/graph_objs/histogram2dcontour/_contours.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -331,17 +334,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - coloring=None, - end=None, - labelfont=None, - labelformat=None, - operation=None, - showlabels=None, - showlines=None, - size=None, - start=None, - type=None, - value=None, + coloring: Any|None = None, + end: int|float|None = None, + labelfont: None|None = None, + labelformat: str|None = None, + operation: Any|None = None, + showlabels: bool|None = None, + showlines: bool|None = None, + size: int|float|None = None, + start: int|float|None = None, + type: Any|None = None, + value: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/_hoverlabel.py b/plotly/graph_objs/histogram2dcontour/_hoverlabel.py index 684cff01ab..e2f4e2fa6a 100644 --- a/plotly/graph_objs/histogram2dcontour/_hoverlabel.py +++ b/plotly/graph_objs/histogram2dcontour/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/_legendgrouptitle.py b/plotly/graph_objs/histogram2dcontour/_legendgrouptitle.py index d0212fba5a..f2c5add08b 100644 --- a/plotly/graph_objs/histogram2dcontour/_legendgrouptitle.py +++ b/plotly/graph_objs/histogram2dcontour/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/_line.py b/plotly/graph_objs/histogram2dcontour/_line.py index c7eb3ad3a0..da3d274c32 100644 --- a/plotly/graph_objs/histogram2dcontour/_line.py +++ b/plotly/graph_objs/histogram2dcontour/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -125,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - smoothing=None, - width=None, + color: str|None = None, + dash: str|None = None, + smoothing: int|float|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/_marker.py b/plotly/graph_objs/histogram2dcontour/_marker.py index 5578d31cbd..d7a3f9b64f 100644 --- a/plotly/graph_objs/histogram2dcontour/_marker.py +++ b/plotly/graph_objs/histogram2dcontour/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -24,7 +27,7 @@ def color(self): Returns ------- - numpy.ndarray + NDArray """ return self['color'] @@ -65,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, + color: NDArray|None = None, + colorsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/_stream.py b/plotly/graph_objs/histogram2dcontour/_stream.py index 17b1ba0b18..396b722cd6 100644 --- a/plotly/graph_objs/histogram2dcontour/_stream.py +++ b/plotly/graph_objs/histogram2dcontour/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/_textfont.py b/plotly/graph_objs/histogram2dcontour/_textfont.py index 6adac74c63..f021e557f8 100644 --- a/plotly/graph_objs/histogram2dcontour/_textfont.py +++ b/plotly/graph_objs/histogram2dcontour/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/_xbins.py b/plotly/graph_objs/histogram2dcontour/_xbins.py index 8ccfc114df..f2c1327469 100644 --- a/plotly/graph_objs/histogram2dcontour/_xbins.py +++ b/plotly/graph_objs/histogram2dcontour/_xbins.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -127,9 +130,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - end=None, - size=None, - start=None, + end: Any|None = None, + size: Any|None = None, + start: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/_ybins.py b/plotly/graph_objs/histogram2dcontour/_ybins.py index e4a93660ce..ffea4a365d 100644 --- a/plotly/graph_objs/histogram2dcontour/_ybins.py +++ b/plotly/graph_objs/histogram2dcontour/_ybins.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -127,9 +130,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - end=None, - size=None, - start=None, + end: Any|None = None, + size: Any|None = None, + start: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/colorbar/_tickfont.py b/plotly/graph_objs/histogram2dcontour/colorbar/_tickfont.py index cbb945df4b..65c7ef8249 100644 --- a/plotly/graph_objs/histogram2dcontour/colorbar/_tickfont.py +++ b/plotly/graph_objs/histogram2dcontour/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/colorbar/_tickformatstop.py b/plotly/graph_objs/histogram2dcontour/colorbar/_tickformatstop.py index dd87fdc747..2d68f856a6 100644 --- a/plotly/graph_objs/histogram2dcontour/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/histogram2dcontour/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/colorbar/_title.py b/plotly/graph_objs/histogram2dcontour/colorbar/_title.py index 401e0f6198..a6a7a44285 100644 --- a/plotly/graph_objs/histogram2dcontour/colorbar/_title.py +++ b/plotly/graph_objs/histogram2dcontour/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/colorbar/title/_font.py b/plotly/graph_objs/histogram2dcontour/colorbar/title/_font.py index 9ffb0f4028..8133cfe72f 100644 --- a/plotly/graph_objs/histogram2dcontour/colorbar/title/_font.py +++ b/plotly/graph_objs/histogram2dcontour/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/contours/_labelfont.py b/plotly/graph_objs/histogram2dcontour/contours/_labelfont.py index 78ebc5850d..9fe7fcc56c 100644 --- a/plotly/graph_objs/histogram2dcontour/contours/_labelfont.py +++ b/plotly/graph_objs/histogram2dcontour/contours/_labelfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/hoverlabel/_font.py b/plotly/graph_objs/histogram2dcontour/hoverlabel/_font.py index aaab0076e9..1c66cd3fab 100644 --- a/plotly/graph_objs/histogram2dcontour/hoverlabel/_font.py +++ b/plotly/graph_objs/histogram2dcontour/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/histogram2dcontour/legendgrouptitle/_font.py b/plotly/graph_objs/histogram2dcontour/legendgrouptitle/_font.py index 17f84a494a..1018c937c0 100644 --- a/plotly/graph_objs/histogram2dcontour/legendgrouptitle/_font.py +++ b/plotly/graph_objs/histogram2dcontour/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/_domain.py b/plotly/graph_objs/icicle/_domain.py index 462e95be79..f377a8b107 100644 --- a/plotly/graph_objs/icicle/_domain.py +++ b/plotly/graph_objs/icicle/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/_hoverlabel.py b/plotly/graph_objs/icicle/_hoverlabel.py index 4a72bf5616..960402ec3a 100644 --- a/plotly/graph_objs/icicle/_hoverlabel.py +++ b/plotly/graph_objs/icicle/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/_insidetextfont.py b/plotly/graph_objs/icicle/_insidetextfont.py index 1a348e35c5..61eac930cd 100644 --- a/plotly/graph_objs/icicle/_insidetextfont.py +++ b/plotly/graph_objs/icicle/_insidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/_leaf.py b/plotly/graph_objs/icicle/_leaf.py index daacc653c5..9ddc459380 100644 --- a/plotly/graph_objs/icicle/_leaf.py +++ b/plotly/graph_objs/icicle/_leaf.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/_legendgrouptitle.py b/plotly/graph_objs/icicle/_legendgrouptitle.py index 13bfe7aa37..be3b641806 100644 --- a/plotly/graph_objs/icicle/_legendgrouptitle.py +++ b/plotly/graph_objs/icicle/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/_marker.py b/plotly/graph_objs/icicle/_marker.py index 5dacb945b7..e8d830b682 100644 --- a/plotly/graph_objs/icicle/_marker.py +++ b/plotly/graph_objs/icicle/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -191,7 +194,7 @@ def colors(self): Returns ------- - numpy.ndarray + NDArray """ return self['colors'] @@ -448,20 +451,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colors=None, - colorscale=None, - colorssrc=None, - line=None, - pattern=None, - reversescale=None, - showscale=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colors: NDArray|None = None, + colorscale: str|None = None, + colorssrc: str|None = None, + line: None|None = None, + pattern: None|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/_outsidetextfont.py b/plotly/graph_objs/icicle/_outsidetextfont.py index e4dfaaf6db..4dab350c61 100644 --- a/plotly/graph_objs/icicle/_outsidetextfont.py +++ b/plotly/graph_objs/icicle/_outsidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/_pathbar.py b/plotly/graph_objs/icicle/_pathbar.py index 6f1732c4ce..68f599e128 100644 --- a/plotly/graph_objs/icicle/_pathbar.py +++ b/plotly/graph_objs/icicle/_pathbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -145,11 +148,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - edgeshape=None, - side=None, - textfont=None, - thickness=None, - visible=None, + edgeshape: Any|None = None, + side: Any|None = None, + textfont: None|None = None, + thickness: int|float|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/_root.py b/plotly/graph_objs/icicle/_root.py index 1e65416580..fe213ebc8d 100644 --- a/plotly/graph_objs/icicle/_root.py +++ b/plotly/graph_objs/icicle/_root.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -50,7 +53,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/_stream.py b/plotly/graph_objs/icicle/_stream.py index 485073385e..1ba0e6eb44 100644 --- a/plotly/graph_objs/icicle/_stream.py +++ b/plotly/graph_objs/icicle/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/_textfont.py b/plotly/graph_objs/icicle/_textfont.py index cd35b08fa5..a2367c4056 100644 --- a/plotly/graph_objs/icicle/_textfont.py +++ b/plotly/graph_objs/icicle/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/_tiling.py b/plotly/graph_objs/icicle/_tiling.py index ea0be35fc2..a514a4d954 100644 --- a/plotly/graph_objs/icicle/_tiling.py +++ b/plotly/graph_objs/icicle/_tiling.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -107,9 +110,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - flip=None, - orientation=None, - pad=None, + flip: Any|None = None, + orientation: Any|None = None, + pad: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/hoverlabel/_font.py b/plotly/graph_objs/icicle/hoverlabel/_font.py index 3fd6994fcb..b33d2e51e0 100644 --- a/plotly/graph_objs/icicle/hoverlabel/_font.py +++ b/plotly/graph_objs/icicle/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/legendgrouptitle/_font.py b/plotly/graph_objs/icicle/legendgrouptitle/_font.py index 3d9352a9a9..9f65f1ef23 100644 --- a/plotly/graph_objs/icicle/legendgrouptitle/_font.py +++ b/plotly/graph_objs/icicle/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/marker/_colorbar.py b/plotly/graph_objs/icicle/marker/_colorbar.py index 2e859fd82a..71788f5a65 100644 --- a/plotly/graph_objs/icicle/marker/_colorbar.py +++ b/plotly/graph_objs/icicle/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/marker/_line.py b/plotly/graph_objs/icicle/marker/_line.py index 47bb4e2556..870d9b83c0 100644 --- a/plotly/graph_objs/icicle/marker/_line.py +++ b/plotly/graph_objs/icicle/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -30,7 +33,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -71,7 +74,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -119,10 +122,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str|None = None, + colorsrc: str|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/marker/_pattern.py b/plotly/graph_objs/icicle/marker/_pattern.py index 6e6f8d4d8c..1bd6a6c51c 100644 --- a/plotly/graph_objs/icicle/marker/_pattern.py +++ b/plotly/graph_objs/icicle/marker/_pattern.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -32,7 +35,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -80,7 +83,7 @@ def fgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['fgcolor'] @@ -166,7 +169,7 @@ def shape(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['shape'] @@ -208,7 +211,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -252,7 +255,7 @@ def solidity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['solidity'] @@ -334,18 +337,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bgcolorsrc=None, - fgcolor=None, - fgcolorsrc=None, - fgopacity=None, - fillmode=None, - shape=None, - shapesrc=None, - size=None, - sizesrc=None, - solidity=None, - soliditysrc=None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + fgcolor: str|None = None, + fgcolorsrc: str|None = None, + fgopacity: int|float|None = None, + fillmode: Any|None = None, + shape: Any|None = None, + shapesrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + solidity: int|float|None = None, + soliditysrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/marker/colorbar/_tickfont.py b/plotly/graph_objs/icicle/marker/colorbar/_tickfont.py index c84259b968..1dde8ecfcf 100644 --- a/plotly/graph_objs/icicle/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/icicle/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/icicle/marker/colorbar/_tickformatstop.py index 6de10e671d..f9223798d2 100644 --- a/plotly/graph_objs/icicle/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/icicle/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/marker/colorbar/_title.py b/plotly/graph_objs/icicle/marker/colorbar/_title.py index 6a9f510041..c82283e452 100644 --- a/plotly/graph_objs/icicle/marker/colorbar/_title.py +++ b/plotly/graph_objs/icicle/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/marker/colorbar/title/_font.py b/plotly/graph_objs/icicle/marker/colorbar/title/_font.py index 5887c1ac1f..f237a0014e 100644 --- a/plotly/graph_objs/icicle/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/icicle/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/icicle/pathbar/_textfont.py b/plotly/graph_objs/icicle/pathbar/_textfont.py index c928ec353f..1933db8a28 100644 --- a/plotly/graph_objs/icicle/pathbar/_textfont.py +++ b/plotly/graph_objs/icicle/pathbar/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/image/_hoverlabel.py b/plotly/graph_objs/image/_hoverlabel.py index f1c9eca6af..57e724e036 100644 --- a/plotly/graph_objs/image/_hoverlabel.py +++ b/plotly/graph_objs/image/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/image/_legendgrouptitle.py b/plotly/graph_objs/image/_legendgrouptitle.py index 3db927818c..5446bdeeee 100644 --- a/plotly/graph_objs/image/_legendgrouptitle.py +++ b/plotly/graph_objs/image/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/image/_stream.py b/plotly/graph_objs/image/_stream.py index e54192b830..ddf7236d80 100644 --- a/plotly/graph_objs/image/_stream.py +++ b/plotly/graph_objs/image/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/image/hoverlabel/_font.py b/plotly/graph_objs/image/hoverlabel/_font.py index d3ba0cc4b6..de5bcbaf8e 100644 --- a/plotly/graph_objs/image/hoverlabel/_font.py +++ b/plotly/graph_objs/image/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/image/legendgrouptitle/_font.py b/plotly/graph_objs/image/legendgrouptitle/_font.py index 3fad7dbce5..635d1df6a4 100644 --- a/plotly/graph_objs/image/legendgrouptitle/_font.py +++ b/plotly/graph_objs/image/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/_delta.py b/plotly/graph_objs/indicator/_delta.py index 1d9adf557a..2e1d24dc3e 100644 --- a/plotly/graph_objs/indicator/_delta.py +++ b/plotly/graph_objs/indicator/_delta.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -237,15 +240,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - decreasing=None, - font=None, - increasing=None, - position=None, - prefix=None, - reference=None, - relative=None, - suffix=None, - valueformat=None, + decreasing: None|None = None, + font: None|None = None, + increasing: None|None = None, + position: Any|None = None, + prefix: str|None = None, + reference: int|float|None = None, + relative: bool|None = None, + suffix: str|None = None, + valueformat: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/_domain.py b/plotly/graph_objs/indicator/_domain.py index d724507295..3551fba21a 100644 --- a/plotly/graph_objs/indicator/_domain.py +++ b/plotly/graph_objs/indicator/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/_gauge.py b/plotly/graph_objs/indicator/_gauge.py index ab830eb6f5..2f2a4a1533 100644 --- a/plotly/graph_objs/indicator/_gauge.py +++ b/plotly/graph_objs/indicator/_gauge.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -247,15 +250,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - axis=None, - bar=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - shape=None, - steps=None, - stepdefaults=None, - threshold=None, + axis: None|None = None, + bar: None|None = None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + shape: Any|None = None, + steps: None|None = None, + stepdefaults: None|None = None, + threshold: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/_legendgrouptitle.py b/plotly/graph_objs/indicator/_legendgrouptitle.py index 18c54bf264..3c1591c5b7 100644 --- a/plotly/graph_objs/indicator/_legendgrouptitle.py +++ b/plotly/graph_objs/indicator/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/_number.py b/plotly/graph_objs/indicator/_number.py index 71729fb0cc..2c6097a09d 100644 --- a/plotly/graph_objs/indicator/_number.py +++ b/plotly/graph_objs/indicator/_number.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -120,10 +123,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - prefix=None, - suffix=None, - valueformat=None, + font: None|None = None, + prefix: str|None = None, + suffix: str|None = None, + valueformat: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/_stream.py b/plotly/graph_objs/indicator/_stream.py index 1face0874b..a86f9ebc77 100644 --- a/plotly/graph_objs/indicator/_stream.py +++ b/plotly/graph_objs/indicator/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/_title.py b/plotly/graph_objs/indicator/_title.py index 9f798c0e8c..c623a25959 100644 --- a/plotly/graph_objs/indicator/_title.py +++ b/plotly/graph_objs/indicator/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -95,9 +98,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - font=None, - text=None, + align: Any|None = None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/delta/_decreasing.py b/plotly/graph_objs/indicator/delta/_decreasing.py index b7976631d3..1cdb8eb088 100644 --- a/plotly/graph_objs/indicator/delta/_decreasing.py +++ b/plotly/graph_objs/indicator/delta/_decreasing.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -69,8 +72,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - symbol=None, + color: str|None = None, + symbol: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/delta/_font.py b/plotly/graph_objs/indicator/delta/_font.py index ab3b074985..61e082d738 100644 --- a/plotly/graph_objs/indicator/delta/_font.py +++ b/plotly/graph_objs/indicator/delta/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/delta/_increasing.py b/plotly/graph_objs/indicator/delta/_increasing.py index fbcba43f9a..599357e407 100644 --- a/plotly/graph_objs/indicator/delta/_increasing.py +++ b/plotly/graph_objs/indicator/delta/_increasing.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -69,8 +72,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - symbol=None, + color: str|None = None, + symbol: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/gauge/_axis.py b/plotly/graph_objs/indicator/gauge/_axis.py index 8edbbf97bb..1020963470 100644 --- a/plotly/graph_objs/indicator/gauge/_axis.py +++ b/plotly/graph_objs/indicator/gauge/_axis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -608,7 +611,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -649,7 +652,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -883,36 +886,36 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtick=None, - exponentformat=None, - labelalias=None, - minexponent=None, - nticks=None, - range=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - visible=None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + range: list|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/gauge/_bar.py b/plotly/graph_objs/indicator/gauge/_bar.py index 32f3eeed52..2ed6c12191 100644 --- a/plotly/graph_objs/indicator/gauge/_bar.py +++ b/plotly/graph_objs/indicator/gauge/_bar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -94,9 +97,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - line=None, - thickness=None, + color: str|None = None, + line: None|None = None, + thickness: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/gauge/_step.py b/plotly/graph_objs/indicator/gauge/_step.py index d5ef716df5..8aaa05fe92 100644 --- a/plotly/graph_objs/indicator/gauge/_step.py +++ b/plotly/graph_objs/indicator/gauge/_step.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -195,12 +198,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - line=None, - name=None, - range=None, - templateitemname=None, - thickness=None, + color: str|None = None, + line: None|None = None, + name: str|None = None, + range: list|None = None, + templateitemname: str|None = None, + thickness: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/gauge/_threshold.py b/plotly/graph_objs/indicator/gauge/_threshold.py index ad5e1d4d73..f5e730b556 100644 --- a/plotly/graph_objs/indicator/gauge/_threshold.py +++ b/plotly/graph_objs/indicator/gauge/_threshold.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - line=None, - thickness=None, - value=None, + line: None|None = None, + thickness: int|float|None = None, + value: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/gauge/axis/_tickfont.py b/plotly/graph_objs/indicator/gauge/axis/_tickfont.py index 1ab085c4a3..cccc9a36c2 100644 --- a/plotly/graph_objs/indicator/gauge/axis/_tickfont.py +++ b/plotly/graph_objs/indicator/gauge/axis/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/gauge/axis/_tickformatstop.py b/plotly/graph_objs/indicator/gauge/axis/_tickformatstop.py index faf3554928..3bcf5c3cd4 100644 --- a/plotly/graph_objs/indicator/gauge/axis/_tickformatstop.py +++ b/plotly/graph_objs/indicator/gauge/axis/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/gauge/bar/_line.py b/plotly/graph_objs/indicator/gauge/bar/_line.py index c418ad10b2..4580cd0567 100644 --- a/plotly/graph_objs/indicator/gauge/bar/_line.py +++ b/plotly/graph_objs/indicator/gauge/bar/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -69,8 +72,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/gauge/step/_line.py b/plotly/graph_objs/indicator/gauge/step/_line.py index 48ed82b9ea..2af5b6a115 100644 --- a/plotly/graph_objs/indicator/gauge/step/_line.py +++ b/plotly/graph_objs/indicator/gauge/step/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -69,8 +72,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/gauge/threshold/_line.py b/plotly/graph_objs/indicator/gauge/threshold/_line.py index 84e7743635..b636a306b6 100644 --- a/plotly/graph_objs/indicator/gauge/threshold/_line.py +++ b/plotly/graph_objs/indicator/gauge/threshold/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/legendgrouptitle/_font.py b/plotly/graph_objs/indicator/legendgrouptitle/_font.py index 2b1701c930..73e0adc22e 100644 --- a/plotly/graph_objs/indicator/legendgrouptitle/_font.py +++ b/plotly/graph_objs/indicator/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/number/_font.py b/plotly/graph_objs/indicator/number/_font.py index 0ba4e7eb22..961722611d 100644 --- a/plotly/graph_objs/indicator/number/_font.py +++ b/plotly/graph_objs/indicator/number/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/indicator/title/_font.py b/plotly/graph_objs/indicator/title/_font.py index e3d29a5278..77de29e97b 100644 --- a/plotly/graph_objs/indicator/title/_font.py +++ b/plotly/graph_objs/indicator/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/_caps.py b/plotly/graph_objs/isosurface/_caps.py index 07b1fae76c..658e451abe 100644 --- a/plotly/graph_objs/isosurface/_caps.py +++ b/plotly/graph_objs/isosurface/_caps.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -92,9 +95,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: None|None = None, + y: None|None = None, + z: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/_colorbar.py b/plotly/graph_objs/isosurface/_colorbar.py index 133e3c5192..dff5bc04dd 100644 --- a/plotly/graph_objs/isosurface/_colorbar.py +++ b/plotly/graph_objs/isosurface/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -853,7 +856,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -894,7 +897,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1395,55 +1398,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/_contour.py b/plotly/graph_objs/isosurface/_contour.py index 4cc719415e..67a0068588 100644 --- a/plotly/graph_objs/isosurface/_contour.py +++ b/plotly/graph_objs/isosurface/_contour.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - show=None, - width=None, + color: str|None = None, + show: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/_hoverlabel.py b/plotly/graph_objs/isosurface/_hoverlabel.py index 9fbce2163a..17b7b24533 100644 --- a/plotly/graph_objs/isosurface/_hoverlabel.py +++ b/plotly/graph_objs/isosurface/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/_legendgrouptitle.py b/plotly/graph_objs/isosurface/_legendgrouptitle.py index 47d85ae0d5..700781c02b 100644 --- a/plotly/graph_objs/isosurface/_legendgrouptitle.py +++ b/plotly/graph_objs/isosurface/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/_lighting.py b/plotly/graph_objs/isosurface/_lighting.py index ff32593cc8..6fa0d41fba 100644 --- a/plotly/graph_objs/isosurface/_lighting.py +++ b/plotly/graph_objs/isosurface/_lighting.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -191,13 +194,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - ambient=None, - diffuse=None, - facenormalsepsilon=None, - fresnel=None, - roughness=None, - specular=None, - vertexnormalsepsilon=None, + ambient: int|float|None = None, + diffuse: int|float|None = None, + facenormalsepsilon: int|float|None = None, + fresnel: int|float|None = None, + roughness: int|float|None = None, + specular: int|float|None = None, + vertexnormalsepsilon: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/_lightposition.py b/plotly/graph_objs/isosurface/_lightposition.py index 72aff28ab6..3706c2c0b4 100644 --- a/plotly/graph_objs/isosurface/_lightposition.py +++ b/plotly/graph_objs/isosurface/_lightposition.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -89,9 +92,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float|None = None, + y: int|float|None = None, + z: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/_slices.py b/plotly/graph_objs/isosurface/_slices.py index 35d7c8f158..fee8393220 100644 --- a/plotly/graph_objs/isosurface/_slices.py +++ b/plotly/graph_objs/isosurface/_slices.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -92,9 +95,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: None|None = None, + y: None|None = None, + z: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/_spaceframe.py b/plotly/graph_objs/isosurface/_spaceframe.py index fe5a3dfa4c..ea5b1ebc63 100644 --- a/plotly/graph_objs/isosurface/_spaceframe.py +++ b/plotly/graph_objs/isosurface/_spaceframe.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -78,8 +81,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - show=None, + fill: int|float|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/_stream.py b/plotly/graph_objs/isosurface/_stream.py index ac193aa076..5e49b126a7 100644 --- a/plotly/graph_objs/isosurface/_stream.py +++ b/plotly/graph_objs/isosurface/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/_surface.py b/plotly/graph_objs/isosurface/_surface.py index 54d6df5f34..eb27b5d285 100644 --- a/plotly/graph_objs/isosurface/_surface.py +++ b/plotly/graph_objs/isosurface/_surface.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -138,10 +141,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - count=None, - fill=None, - pattern=None, - show=None, + count: int|None = None, + fill: int|float|None = None, + pattern: Any|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/caps/_x.py b/plotly/graph_objs/isosurface/caps/_x.py index 8e8810eea1..741133fee3 100644 --- a/plotly/graph_objs/isosurface/caps/_x.py +++ b/plotly/graph_objs/isosurface/caps/_x.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -78,8 +81,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - show=None, + fill: int|float|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/caps/_y.py b/plotly/graph_objs/isosurface/caps/_y.py index 3e6437ba36..0d43eea903 100644 --- a/plotly/graph_objs/isosurface/caps/_y.py +++ b/plotly/graph_objs/isosurface/caps/_y.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -78,8 +81,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - show=None, + fill: int|float|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/caps/_z.py b/plotly/graph_objs/isosurface/caps/_z.py index 05f5cbd703..475c8aa5cb 100644 --- a/plotly/graph_objs/isosurface/caps/_z.py +++ b/plotly/graph_objs/isosurface/caps/_z.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -78,8 +81,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - show=None, + fill: int|float|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/colorbar/_tickfont.py b/plotly/graph_objs/isosurface/colorbar/_tickfont.py index 4b4e086d34..12c9dd6649 100644 --- a/plotly/graph_objs/isosurface/colorbar/_tickfont.py +++ b/plotly/graph_objs/isosurface/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/colorbar/_tickformatstop.py b/plotly/graph_objs/isosurface/colorbar/_tickformatstop.py index 5dfc4ea7f7..6cbec4b8e3 100644 --- a/plotly/graph_objs/isosurface/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/isosurface/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/colorbar/_title.py b/plotly/graph_objs/isosurface/colorbar/_title.py index 2a67be0a15..9639f81c1b 100644 --- a/plotly/graph_objs/isosurface/colorbar/_title.py +++ b/plotly/graph_objs/isosurface/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/colorbar/title/_font.py b/plotly/graph_objs/isosurface/colorbar/title/_font.py index ff1c82e7a3..5c1ce65c83 100644 --- a/plotly/graph_objs/isosurface/colorbar/title/_font.py +++ b/plotly/graph_objs/isosurface/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/hoverlabel/_font.py b/plotly/graph_objs/isosurface/hoverlabel/_font.py index 3698abbf89..4f835d1c43 100644 --- a/plotly/graph_objs/isosurface/hoverlabel/_font.py +++ b/plotly/graph_objs/isosurface/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/legendgrouptitle/_font.py b/plotly/graph_objs/isosurface/legendgrouptitle/_font.py index c97442df99..0e6788c8c2 100644 --- a/plotly/graph_objs/isosurface/legendgrouptitle/_font.py +++ b/plotly/graph_objs/isosurface/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/slices/_x.py b/plotly/graph_objs/isosurface/slices/_x.py index c7e0fe747a..267da54b27 100644 --- a/plotly/graph_objs/isosurface/slices/_x.py +++ b/plotly/graph_objs/isosurface/slices/_x.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -49,7 +52,7 @@ def locations(self): Returns ------- - numpy.ndarray + NDArray """ return self['locations'] @@ -123,10 +126,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - locations=None, - locationssrc=None, - show=None, + fill: int|float|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/slices/_y.py b/plotly/graph_objs/isosurface/slices/_y.py index c3a7342921..a42a151852 100644 --- a/plotly/graph_objs/isosurface/slices/_y.py +++ b/plotly/graph_objs/isosurface/slices/_y.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -49,7 +52,7 @@ def locations(self): Returns ------- - numpy.ndarray + NDArray """ return self['locations'] @@ -123,10 +126,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - locations=None, - locationssrc=None, - show=None, + fill: int|float|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/isosurface/slices/_z.py b/plotly/graph_objs/isosurface/slices/_z.py index e938be8599..900b16e4ea 100644 --- a/plotly/graph_objs/isosurface/slices/_z.py +++ b/plotly/graph_objs/isosurface/slices/_z.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -49,7 +52,7 @@ def locations(self): Returns ------- - numpy.ndarray + NDArray """ return self['locations'] @@ -123,10 +126,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - locations=None, - locationssrc=None, - show=None, + fill: int|float|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_activeselection.py b/plotly/graph_objs/layout/_activeselection.py index 6e4ad180a9..3915c8cab4 100644 --- a/plotly/graph_objs/layout/_activeselection.py +++ b/plotly/graph_objs/layout/_activeselection.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fillcolor=None, - opacity=None, + fillcolor: str|None = None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_activeshape.py b/plotly/graph_objs/layout/_activeshape.py index 422a467818..0423cbeeed 100644 --- a/plotly/graph_objs/layout/_activeshape.py +++ b/plotly/graph_objs/layout/_activeshape.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fillcolor=None, - opacity=None, + fillcolor: str|None = None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_annotation.py b/plotly/graph_objs/layout/_annotation.py index b0e704bf85..d3e7f0b1c2 100644 --- a/plotly/graph_objs/layout/_annotation.py +++ b/plotly/graph_objs/layout/_annotation.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -1354,49 +1357,49 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - arrowcolor=None, - arrowhead=None, - arrowside=None, - arrowsize=None, - arrowwidth=None, - ax=None, - axref=None, - ay=None, - ayref=None, - bgcolor=None, - bordercolor=None, - borderpad=None, - borderwidth=None, - captureevents=None, - clicktoshow=None, - font=None, - height=None, - hoverlabel=None, - hovertext=None, - name=None, - opacity=None, - showarrow=None, - standoff=None, - startarrowhead=None, - startarrowsize=None, - startstandoff=None, - templateitemname=None, - text=None, - textangle=None, - valign=None, - visible=None, - width=None, - x=None, - xanchor=None, - xclick=None, - xref=None, - xshift=None, - y=None, - yanchor=None, - yclick=None, - yref=None, - yshift=None, + align: Any|None = None, + arrowcolor: str|None = None, + arrowhead: int|None = None, + arrowside: Any|None = None, + arrowsize: int|float|None = None, + arrowwidth: int|float|None = None, + ax: Any|None = None, + axref: Any|None = None, + ay: Any|None = None, + ayref: Any|None = None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderpad: int|float|None = None, + borderwidth: int|float|None = None, + captureevents: bool|None = None, + clicktoshow: Any|None = None, + font: None|None = None, + height: int|float|None = None, + hoverlabel: None|None = None, + hovertext: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + showarrow: bool|None = None, + standoff: int|float|None = None, + startarrowhead: int|None = None, + startarrowsize: int|float|None = None, + startstandoff: int|float|None = None, + templateitemname: str|None = None, + text: str|None = None, + textangle: int|float|None = None, + valign: Any|None = None, + visible: bool|None = None, + width: int|float|None = None, + x: Any|None = None, + xanchor: Any|None = None, + xclick: Any|None = None, + xref: Any|None = None, + xshift: int|float|None = None, + y: Any|None = None, + yanchor: Any|None = None, + yclick: Any|None = None, + yref: Any|None = None, + yshift: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_coloraxis.py b/plotly/graph_objs/layout/_coloraxis.py index 1ae6bddbdd..0650ae2c66 100644 --- a/plotly/graph_objs/layout/_coloraxis.py +++ b/plotly/graph_objs/layout/_coloraxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -300,15 +303,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - colorbar=None, - colorscale=None, - reversescale=None, - showscale=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_colorscale.py b/plotly/graph_objs/layout/_colorscale.py index 896c8e6ec6..c480609c05 100644 --- a/plotly/graph_objs/layout/_colorscale.py +++ b/plotly/graph_objs/layout/_colorscale.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -169,9 +172,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - diverging=None, - sequential=None, - sequentialminus=None, + diverging: str|None = None, + sequential: str|None = None, + sequentialminus: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_font.py b/plotly/graph_objs/layout/_font.py index fd3106772c..035c774de9 100644 --- a/plotly/graph_objs/layout/_font.py +++ b/plotly/graph_objs/layout/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_geo.py b/plotly/graph_objs/layout/_geo.py index cffcee8524..9a06b36ebf 100644 --- a/plotly/graph_objs/layout/_geo.py +++ b/plotly/graph_objs/layout/_geo.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -809,38 +812,38 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - center=None, - coastlinecolor=None, - coastlinewidth=None, - countrycolor=None, - countrywidth=None, - domain=None, - fitbounds=None, - framecolor=None, - framewidth=None, - lakecolor=None, - landcolor=None, - lataxis=None, - lonaxis=None, - oceancolor=None, - projection=None, - resolution=None, - rivercolor=None, - riverwidth=None, - scope=None, - showcoastlines=None, - showcountries=None, - showframe=None, - showlakes=None, - showland=None, - showocean=None, - showrivers=None, - showsubunits=None, - subunitcolor=None, - subunitwidth=None, - uirevision=None, - visible=None, + bgcolor: str|None = None, + center: None|None = None, + coastlinecolor: str|None = None, + coastlinewidth: int|float|None = None, + countrycolor: str|None = None, + countrywidth: int|float|None = None, + domain: None|None = None, + fitbounds: Any|None = None, + framecolor: str|None = None, + framewidth: int|float|None = None, + lakecolor: str|None = None, + landcolor: str|None = None, + lataxis: None|None = None, + lonaxis: None|None = None, + oceancolor: str|None = None, + projection: None|None = None, + resolution: Any|None = None, + rivercolor: str|None = None, + riverwidth: int|float|None = None, + scope: Any|None = None, + showcoastlines: bool|None = None, + showcountries: bool|None = None, + showframe: bool|None = None, + showlakes: bool|None = None, + showland: bool|None = None, + showocean: bool|None = None, + showrivers: bool|None = None, + showsubunits: bool|None = None, + subunitcolor: str|None = None, + subunitwidth: int|float|None = None, + uirevision: Any|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_grid.py b/plotly/graph_objs/layout/_grid.py index ced67a8c89..9b4d42e531 100644 --- a/plotly/graph_objs/layout/_grid.py +++ b/plotly/graph_objs/layout/_grid.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -391,18 +394,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - columns=None, - domain=None, - pattern=None, - roworder=None, - rows=None, - subplots=None, - xaxes=None, - xgap=None, - xside=None, - yaxes=None, - ygap=None, - yside=None, + columns: int|None = None, + domain: None|None = None, + pattern: Any|None = None, + roworder: Any|None = None, + rows: int|None = None, + subplots: list|None = None, + xaxes: list|None = None, + xgap: int|float|None = None, + xside: Any|None = None, + yaxes: list|None = None, + ygap: int|float|None = None, + yside: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_hoverlabel.py b/plotly/graph_objs/layout/_hoverlabel.py index a1a3279f59..98bdcfc625 100644 --- a/plotly/graph_objs/layout/_hoverlabel.py +++ b/plotly/graph_objs/layout/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -187,12 +190,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - bgcolor=None, - bordercolor=None, - font=None, - grouptitlefont=None, - namelength=None, + align: Any|None = None, + bgcolor: str|None = None, + bordercolor: str|None = None, + font: None|None = None, + grouptitlefont: None|None = None, + namelength: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_image.py b/plotly/graph_objs/layout/_image.py index 639adf3295..94f1e63242 100644 --- a/plotly/graph_objs/layout/_image.py +++ b/plotly/graph_objs/layout/_image.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -470,21 +473,21 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - layer=None, - name=None, - opacity=None, - sizex=None, - sizey=None, - sizing=None, - source=None, - templateitemname=None, - visible=None, - x=None, - xanchor=None, - xref=None, - y=None, - yanchor=None, - yref=None, + layer: Any|None = None, + name: str|None = None, + opacity: int|float|None = None, + sizex: int|float|None = None, + sizey: int|float|None = None, + sizing: Any|None = None, + source: str|None = None, + templateitemname: str|None = None, + visible: bool|None = None, + x: Any|None = None, + xanchor: Any|None = None, + xref: Any|None = None, + y: Any|None = None, + yanchor: Any|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_legend.py b/plotly/graph_objs/layout/_legend.py index 519a14f2b6..f0f3f5336c 100644 --- a/plotly/graph_objs/layout/_legend.py +++ b/plotly/graph_objs/layout/_legend.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -737,32 +740,32 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - entrywidth=None, - entrywidthmode=None, - font=None, - groupclick=None, - grouptitlefont=None, - indentation=None, - itemclick=None, - itemdoubleclick=None, - itemsizing=None, - itemwidth=None, - orientation=None, - title=None, - tracegroupgap=None, - traceorder=None, - uirevision=None, - valign=None, - visible=None, - x=None, - xanchor=None, - xref=None, - y=None, - yanchor=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + entrywidth: int|float|None = None, + entrywidthmode: Any|None = None, + font: None|None = None, + groupclick: Any|None = None, + grouptitlefont: None|None = None, + indentation: int|float|None = None, + itemclick: Any|None = None, + itemdoubleclick: Any|None = None, + itemsizing: Any|None = None, + itemwidth: int|float|None = None, + orientation: Any|None = None, + title: None|None = None, + tracegroupgap: int|float|None = None, + traceorder: Any|None = None, + uirevision: Any|None = None, + valign: Any|None = None, + visible: bool|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_map.py b/plotly/graph_objs/layout/_map.py index faf3342736..d57dabd0f3 100644 --- a/plotly/graph_objs/layout/_map.py +++ b/plotly/graph_objs/layout/_map.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -295,16 +298,16 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bearing=None, - bounds=None, - center=None, - domain=None, - layers=None, - layerdefaults=None, - pitch=None, - style=None, - uirevision=None, - zoom=None, + bearing: int|float|None = None, + bounds: None|None = None, + center: None|None = None, + domain: None|None = None, + layers: None|None = None, + layerdefaults: None|None = None, + pitch: int|float|None = None, + style: Any|None = None, + uirevision: Any|None = None, + zoom: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_mapbox.py b/plotly/graph_objs/layout/_mapbox.py index fea8bffecb..4490f847a0 100644 --- a/plotly/graph_objs/layout/_mapbox.py +++ b/plotly/graph_objs/layout/_mapbox.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -339,17 +342,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - accesstoken=None, - bearing=None, - bounds=None, - center=None, - domain=None, - layers=None, - layerdefaults=None, - pitch=None, - style=None, - uirevision=None, - zoom=None, + accesstoken: str|None = None, + bearing: int|float|None = None, + bounds: None|None = None, + center: None|None = None, + domain: None|None = None, + layers: None|None = None, + layerdefaults: None|None = None, + pitch: int|float|None = None, + style: Any|None = None, + uirevision: Any|None = None, + zoom: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_margin.py b/plotly/graph_objs/layout/_margin.py index 5e76b959eb..cf35053073 100644 --- a/plotly/graph_objs/layout/_margin.py +++ b/plotly/graph_objs/layout/_margin.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -159,12 +162,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autoexpand=None, - b=None, - l=None, - pad=None, - r=None, - t=None, + autoexpand: bool|None = None, + b: int|float|None = None, + l: int|float|None = None, + pad: int|float|None = None, + r: int|float|None = None, + t: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_modebar.py b/plotly/graph_objs/layout/_modebar.py index 8e9c1a349c..ced9b0bdc1 100644 --- a/plotly/graph_objs/layout/_modebar.py +++ b/plotly/graph_objs/layout/_modebar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -57,7 +60,7 @@ def add(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['add'] @@ -183,7 +186,7 @@ def remove(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['remove'] @@ -290,15 +293,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - activecolor=None, - add=None, - addsrc=None, - bgcolor=None, - color=None, - orientation=None, - remove=None, - removesrc=None, - uirevision=None, + activecolor: str|None = None, + add: str|None = None, + addsrc: str|None = None, + bgcolor: str|None = None, + color: str|None = None, + orientation: Any|None = None, + remove: str|None = None, + removesrc: str|None = None, + uirevision: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_newselection.py b/plotly/graph_objs/layout/_newselection.py index 0a7a9c1edb..f2651bc627 100644 --- a/plotly/graph_objs/layout/_newselection.py +++ b/plotly/graph_objs/layout/_newselection.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -76,8 +79,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - line=None, - mode=None, + line: None|None = None, + mode: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_newshape.py b/plotly/graph_objs/layout/_newshape.py index b88129ab6f..232dcfcc80 100644 --- a/plotly/graph_objs/layout/_newshape.py +++ b/plotly/graph_objs/layout/_newshape.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -424,21 +427,21 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - drawdirection=None, - fillcolor=None, - fillrule=None, - label=None, - layer=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - name=None, - opacity=None, - showlegend=None, - visible=None, + drawdirection: Any|None = None, + fillcolor: str|None = None, + fillrule: Any|None = None, + label: None|None = None, + layer: Any|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + name: str|None = None, + opacity: int|float|None = None, + showlegend: bool|None = None, + visible: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_polar.py b/plotly/graph_objs/layout/_polar.py index cff60733ce..26938228e8 100644 --- a/plotly/graph_objs/layout/_polar.py +++ b/plotly/graph_objs/layout/_polar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -292,16 +295,16 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - angularaxis=None, - bargap=None, - barmode=None, - bgcolor=None, - domain=None, - gridshape=None, - hole=None, - radialaxis=None, - sector=None, - uirevision=None, + angularaxis: None|None = None, + bargap: int|float|None = None, + barmode: Any|None = None, + bgcolor: str|None = None, + domain: None|None = None, + gridshape: Any|None = None, + hole: int|float|None = None, + radialaxis: None|None = None, + sector: list|None = None, + uirevision: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_scene.py b/plotly/graph_objs/layout/_scene.py index 6feab8541a..28199630b0 100644 --- a/plotly/graph_objs/layout/_scene.py +++ b/plotly/graph_objs/layout/_scene.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -355,19 +358,19 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - annotations=None, - annotationdefaults=None, - aspectmode=None, - aspectratio=None, - bgcolor=None, - camera=None, - domain=None, - dragmode=None, - hovermode=None, - uirevision=None, - xaxis=None, - yaxis=None, - zaxis=None, + annotations: None|None = None, + annotationdefaults: None|None = None, + aspectmode: Any|None = None, + aspectratio: None|None = None, + bgcolor: str|None = None, + camera: None|None = None, + domain: None|None = None, + dragmode: Any|None = None, + hovermode: Any|None = None, + uirevision: Any|None = None, + xaxis: None|None = None, + yaxis: None|None = None, + zaxis: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_selection.py b/plotly/graph_objs/layout/_selection.py index 0ecbb61910..40d9c4878d 100644 --- a/plotly/graph_objs/layout/_selection.py +++ b/plotly/graph_objs/layout/_selection.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -373,18 +376,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - line=None, - name=None, - opacity=None, - path=None, - templateitemname=None, - type=None, - x0=None, - x1=None, - xref=None, - y0=None, - y1=None, - yref=None, + line: None|None = None, + name: str|None = None, + opacity: int|float|None = None, + path: str|None = None, + templateitemname: str|None = None, + type: Any|None = None, + x0: Any|None = None, + x1: Any|None = None, + xref: Any|None = None, + y0: Any|None = None, + y1: Any|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_shape.py b/plotly/graph_objs/layout/_shape.py index 8383b94e31..6b07027c4d 100644 --- a/plotly/graph_objs/layout/_shape.py +++ b/plotly/graph_objs/layout/_shape.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -1008,38 +1011,38 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - editable=None, - fillcolor=None, - fillrule=None, - label=None, - layer=None, - legend=None, - legendgroup=None, - legendgrouptitle=None, - legendrank=None, - legendwidth=None, - line=None, - name=None, - opacity=None, - path=None, - showlegend=None, - templateitemname=None, - type=None, - visible=None, - x0=None, - x0shift=None, - x1=None, - x1shift=None, - xanchor=None, - xref=None, - xsizemode=None, - y0=None, - y0shift=None, - y1=None, - y1shift=None, - yanchor=None, - yref=None, - ysizemode=None, + editable: bool|None = None, + fillcolor: str|None = None, + fillrule: Any|None = None, + label: None|None = None, + layer: Any|None = None, + legend: str|None = None, + legendgroup: str|None = None, + legendgrouptitle: None|None = None, + legendrank: int|float|None = None, + legendwidth: int|float|None = None, + line: None|None = None, + name: str|None = None, + opacity: int|float|None = None, + path: str|None = None, + showlegend: bool|None = None, + templateitemname: str|None = None, + type: Any|None = None, + visible: Any|None = None, + x0: Any|None = None, + x0shift: int|float|None = None, + x1: Any|None = None, + x1shift: int|float|None = None, + xanchor: Any|None = None, + xref: Any|None = None, + xsizemode: Any|None = None, + y0: Any|None = None, + y0shift: int|float|None = None, + y1: Any|None = None, + y1shift: int|float|None = None, + yanchor: Any|None = None, + yref: Any|None = None, + ysizemode: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_slider.py b/plotly/graph_objs/layout/_slider.py index df5a838620..c58286aedf 100644 --- a/plotly/graph_objs/layout/_slider.py +++ b/plotly/graph_objs/layout/_slider.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -640,30 +643,30 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - active=None, - activebgcolor=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - currentvalue=None, - font=None, - len=None, - lenmode=None, - minorticklen=None, - name=None, - pad=None, - steps=None, - stepdefaults=None, - templateitemname=None, - tickcolor=None, - ticklen=None, - tickwidth=None, - transition=None, - visible=None, - x=None, - xanchor=None, - y=None, - yanchor=None, + active: int|float|None = None, + activebgcolor: str|None = None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + currentvalue: None|None = None, + font: None|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minorticklen: int|float|None = None, + name: str|None = None, + pad: None|None = None, + steps: None|None = None, + stepdefaults: None|None = None, + templateitemname: str|None = None, + tickcolor: str|None = None, + ticklen: int|float|None = None, + tickwidth: int|float|None = None, + transition: None|None = None, + visible: bool|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_smith.py b/plotly/graph_objs/layout/_smith.py index 3582a4fb95..08c5545203 100644 --- a/plotly/graph_objs/layout/_smith.py +++ b/plotly/graph_objs/layout/_smith.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -118,10 +121,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - domain=None, - imaginaryaxis=None, - realaxis=None, + bgcolor: str|None = None, + domain: None|None = None, + imaginaryaxis: None|None = None, + realaxis: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_template.py b/plotly/graph_objs/layout/_template.py index 0d4e10b176..01fcc04524 100644 --- a/plotly/graph_objs/layout/_template.py +++ b/plotly/graph_objs/layout/_template.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - data=None, - layout=None, + data: None|None = None, + layout: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_ternary.py b/plotly/graph_objs/layout/_ternary.py index 75f6b9895d..81c680d152 100644 --- a/plotly/graph_objs/layout/_ternary.py +++ b/plotly/graph_objs/layout/_ternary.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -191,13 +194,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - aaxis=None, - baxis=None, - bgcolor=None, - caxis=None, - domain=None, - sum=None, - uirevision=None, + aaxis: None|None = None, + baxis: None|None = None, + bgcolor: str|None = None, + caxis: None|None = None, + domain: None|None = None, + sum: int|float|None = None, + uirevision: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_title.py b/plotly/graph_objs/layout/_title.py index 2da826ca7d..d76f0b176c 100644 --- a/plotly/graph_objs/layout/_title.py +++ b/plotly/graph_objs/layout/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -343,17 +346,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - automargin=None, - font=None, - pad=None, - subtitle=None, - text=None, - x=None, - xanchor=None, - xref=None, - y=None, - yanchor=None, - yref=None, + automargin: bool|None = None, + font: None|None = None, + pad: None|None = None, + subtitle: None|None = None, + text: str|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_transition.py b/plotly/graph_objs/layout/_transition.py index 1af48862bd..c582e32912 100644 --- a/plotly/graph_objs/layout/_transition.py +++ b/plotly/graph_objs/layout/_transition.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -102,9 +105,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - duration=None, - easing=None, - ordering=None, + duration: int|float|None = None, + easing: Any|None = None, + ordering: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_uniformtext.py b/plotly/graph_objs/layout/_uniformtext.py index 41d9672549..1c76aa9009 100644 --- a/plotly/graph_objs/layout/_uniformtext.py +++ b/plotly/graph_objs/layout/_uniformtext.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -80,8 +83,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - minsize=None, - mode=None, + minsize: int|float|None = None, + mode: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_updatemenu.py b/plotly/graph_objs/layout/_updatemenu.py index adc1d37dde..5d6e27db21 100644 --- a/plotly/graph_objs/layout/_updatemenu.py +++ b/plotly/graph_objs/layout/_updatemenu.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -504,24 +507,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - active=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - buttons=None, - buttondefaults=None, - direction=None, - font=None, - name=None, - pad=None, - showactive=None, - templateitemname=None, - type=None, - visible=None, - x=None, - xanchor=None, - y=None, - yanchor=None, + active: int|None = None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + buttons: None|None = None, + buttondefaults: None|None = None, + direction: Any|None = None, + font: None|None = None, + name: str|None = None, + pad: None|None = None, + showactive: bool|None = None, + templateitemname: str|None = None, + type: Any|None = None, + visible: bool|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_xaxis.py b/plotly/graph_objs/layout/_xaxis.py index 6e14ca0ba0..579306874c 100644 --- a/plotly/graph_objs/layout/_xaxis.py +++ b/plotly/graph_objs/layout/_xaxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -205,7 +208,7 @@ def categoryarray(self): Returns ------- - numpy.ndarray + NDArray """ return self['categoryarray'] @@ -1684,7 +1687,7 @@ def ticklabelindex(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['ticklabelindex'] @@ -2021,7 +2024,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -2062,7 +2065,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -2778,99 +2781,99 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - anchor=None, - automargin=None, - autorange=None, - autorangeoptions=None, - autotickangles=None, - autotypenumbers=None, - calendar=None, - categoryarray=None, - categoryarraysrc=None, - categoryorder=None, - color=None, - constrain=None, - constraintoward=None, - dividercolor=None, - dividerwidth=None, - domain=None, - dtick=None, - exponentformat=None, - fixedrange=None, - gridcolor=None, - griddash=None, - gridwidth=None, - hoverformat=None, - insiderange=None, - labelalias=None, - layer=None, - linecolor=None, - linewidth=None, - matches=None, - maxallowed=None, - minallowed=None, - minexponent=None, - minor=None, - mirror=None, - nticks=None, - overlaying=None, - position=None, - range=None, - rangebreaks=None, - rangebreakdefaults=None, - rangemode=None, - rangeselector=None, - rangeslider=None, - scaleanchor=None, - scaleratio=None, - separatethousands=None, - showdividers=None, - showexponent=None, - showgrid=None, - showline=None, - showspikes=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - side=None, - spikecolor=None, - spikedash=None, - spikemode=None, - spikesnap=None, - spikethickness=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabelindex=None, - ticklabelindexsrc=None, - ticklabelmode=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelshift=None, - ticklabelstandoff=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - tickson=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - type=None, - uirevision=None, - visible=None, - zeroline=None, - zerolinecolor=None, - zerolinewidth=None, + anchor: Any|None = None, + automargin: Any|None = None, + autorange: Any|None = None, + autorangeoptions: None|None = None, + autotickangles: list|None = None, + autotypenumbers: Any|None = None, + calendar: Any|None = None, + categoryarray: NDArray|None = None, + categoryarraysrc: str|None = None, + categoryorder: Any|None = None, + color: str|None = None, + constrain: Any|None = None, + constraintoward: Any|None = None, + dividercolor: str|None = None, + dividerwidth: int|float|None = None, + domain: list|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + fixedrange: bool|None = None, + gridcolor: str|None = None, + griddash: str|None = None, + gridwidth: int|float|None = None, + hoverformat: str|None = None, + insiderange: list|None = None, + labelalias: Any|None = None, + layer: Any|None = None, + linecolor: str|None = None, + linewidth: int|float|None = None, + matches: Any|None = None, + maxallowed: Any|None = None, + minallowed: Any|None = None, + minexponent: int|float|None = None, + minor: None|None = None, + mirror: Any|None = None, + nticks: int|None = None, + overlaying: Any|None = None, + position: int|float|None = None, + range: list|None = None, + rangebreaks: None|None = None, + rangebreakdefaults: None|None = None, + rangemode: Any|None = None, + rangeselector: None|None = None, + rangeslider: None|None = None, + scaleanchor: Any|None = None, + scaleratio: int|float|None = None, + separatethousands: bool|None = None, + showdividers: bool|None = None, + showexponent: Any|None = None, + showgrid: bool|None = None, + showline: bool|None = None, + showspikes: bool|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + side: Any|None = None, + spikecolor: str|None = None, + spikedash: str|None = None, + spikemode: Any|None = None, + spikesnap: Any|None = None, + spikethickness: int|float|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabelindex: int|None = None, + ticklabelindexsrc: str|None = None, + ticklabelmode: Any|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelshift: int|None = None, + ticklabelstandoff: int|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + tickson: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + type: Any|None = None, + uirevision: Any|None = None, + visible: bool|None = None, + zeroline: bool|None = None, + zerolinecolor: str|None = None, + zerolinewidth: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/_yaxis.py b/plotly/graph_objs/layout/_yaxis.py index 2112086dea..26c0516e9a 100644 --- a/plotly/graph_objs/layout/_yaxis.py +++ b/plotly/graph_objs/layout/_yaxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -229,7 +232,7 @@ def categoryarray(self): Returns ------- - numpy.ndarray + NDArray """ return self['categoryarray'] @@ -1692,7 +1695,7 @@ def ticklabelindex(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['ticklabelindex'] @@ -2029,7 +2032,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -2070,7 +2073,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -2796,99 +2799,99 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - anchor=None, - automargin=None, - autorange=None, - autorangeoptions=None, - autoshift=None, - autotickangles=None, - autotypenumbers=None, - calendar=None, - categoryarray=None, - categoryarraysrc=None, - categoryorder=None, - color=None, - constrain=None, - constraintoward=None, - dividercolor=None, - dividerwidth=None, - domain=None, - dtick=None, - exponentformat=None, - fixedrange=None, - gridcolor=None, - griddash=None, - gridwidth=None, - hoverformat=None, - insiderange=None, - labelalias=None, - layer=None, - linecolor=None, - linewidth=None, - matches=None, - maxallowed=None, - minallowed=None, - minexponent=None, - minor=None, - mirror=None, - nticks=None, - overlaying=None, - position=None, - range=None, - rangebreaks=None, - rangebreakdefaults=None, - rangemode=None, - scaleanchor=None, - scaleratio=None, - separatethousands=None, - shift=None, - showdividers=None, - showexponent=None, - showgrid=None, - showline=None, - showspikes=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - side=None, - spikecolor=None, - spikedash=None, - spikemode=None, - spikesnap=None, - spikethickness=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabelindex=None, - ticklabelindexsrc=None, - ticklabelmode=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelshift=None, - ticklabelstandoff=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - tickson=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - type=None, - uirevision=None, - visible=None, - zeroline=None, - zerolinecolor=None, - zerolinewidth=None, + anchor: Any|None = None, + automargin: Any|None = None, + autorange: Any|None = None, + autorangeoptions: None|None = None, + autoshift: bool|None = None, + autotickangles: list|None = None, + autotypenumbers: Any|None = None, + calendar: Any|None = None, + categoryarray: NDArray|None = None, + categoryarraysrc: str|None = None, + categoryorder: Any|None = None, + color: str|None = None, + constrain: Any|None = None, + constraintoward: Any|None = None, + dividercolor: str|None = None, + dividerwidth: int|float|None = None, + domain: list|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + fixedrange: bool|None = None, + gridcolor: str|None = None, + griddash: str|None = None, + gridwidth: int|float|None = None, + hoverformat: str|None = None, + insiderange: list|None = None, + labelalias: Any|None = None, + layer: Any|None = None, + linecolor: str|None = None, + linewidth: int|float|None = None, + matches: Any|None = None, + maxallowed: Any|None = None, + minallowed: Any|None = None, + minexponent: int|float|None = None, + minor: None|None = None, + mirror: Any|None = None, + nticks: int|None = None, + overlaying: Any|None = None, + position: int|float|None = None, + range: list|None = None, + rangebreaks: None|None = None, + rangebreakdefaults: None|None = None, + rangemode: Any|None = None, + scaleanchor: Any|None = None, + scaleratio: int|float|None = None, + separatethousands: bool|None = None, + shift: int|float|None = None, + showdividers: bool|None = None, + showexponent: Any|None = None, + showgrid: bool|None = None, + showline: bool|None = None, + showspikes: bool|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + side: Any|None = None, + spikecolor: str|None = None, + spikedash: str|None = None, + spikemode: Any|None = None, + spikesnap: Any|None = None, + spikethickness: int|float|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabelindex: int|None = None, + ticklabelindexsrc: str|None = None, + ticklabelmode: Any|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelshift: int|None = None, + ticklabelstandoff: int|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + tickson: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + type: Any|None = None, + uirevision: Any|None = None, + visible: bool|None = None, + zeroline: bool|None = None, + zerolinecolor: str|None = None, + zerolinewidth: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/annotation/_font.py b/plotly/graph_objs/layout/annotation/_font.py index c2f0474281..4852457019 100644 --- a/plotly/graph_objs/layout/annotation/_font.py +++ b/plotly/graph_objs/layout/annotation/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/annotation/_hoverlabel.py b/plotly/graph_objs/layout/annotation/_hoverlabel.py index a8d7e592f6..02c7dcf4cb 100644 --- a/plotly/graph_objs/layout/annotation/_hoverlabel.py +++ b/plotly/graph_objs/layout/annotation/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -108,9 +111,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - font=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + font: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/annotation/hoverlabel/_font.py b/plotly/graph_objs/layout/annotation/hoverlabel/_font.py index b4d1332952..3242072be5 100644 --- a/plotly/graph_objs/layout/annotation/hoverlabel/_font.py +++ b/plotly/graph_objs/layout/annotation/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/coloraxis/_colorbar.py b/plotly/graph_objs/layout/coloraxis/_colorbar.py index 49354b7384..721ab3472e 100644 --- a/plotly/graph_objs/layout/coloraxis/_colorbar.py +++ b/plotly/graph_objs/layout/coloraxis/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/coloraxis/colorbar/_tickfont.py b/plotly/graph_objs/layout/coloraxis/colorbar/_tickfont.py index bc7fbfa755..5829f265e4 100644 --- a/plotly/graph_objs/layout/coloraxis/colorbar/_tickfont.py +++ b/plotly/graph_objs/layout/coloraxis/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/coloraxis/colorbar/_tickformatstop.py b/plotly/graph_objs/layout/coloraxis/colorbar/_tickformatstop.py index 948d83b4bf..0de894bfae 100644 --- a/plotly/graph_objs/layout/coloraxis/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/layout/coloraxis/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/coloraxis/colorbar/_title.py b/plotly/graph_objs/layout/coloraxis/colorbar/_title.py index 169cb20518..abf530a467 100644 --- a/plotly/graph_objs/layout/coloraxis/colorbar/_title.py +++ b/plotly/graph_objs/layout/coloraxis/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/coloraxis/colorbar/title/_font.py b/plotly/graph_objs/layout/coloraxis/colorbar/title/_font.py index 162d27ef2e..71310133d2 100644 --- a/plotly/graph_objs/layout/coloraxis/colorbar/title/_font.py +++ b/plotly/graph_objs/layout/coloraxis/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/geo/_center.py b/plotly/graph_objs/layout/geo/_center.py index a628ba7feb..a1f967b374 100644 --- a/plotly/graph_objs/layout/geo/_center.py +++ b/plotly/graph_objs/layout/geo/_center.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -74,8 +77,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - lat=None, - lon=None, + lat: int|float|None = None, + lon: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/geo/_domain.py b/plotly/graph_objs/layout/geo/_domain.py index bb3219c5ba..3c53f61595 100644 --- a/plotly/graph_objs/layout/geo/_domain.py +++ b/plotly/graph_objs/layout/geo/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -150,10 +153,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/geo/_lataxis.py b/plotly/graph_objs/layout/geo/_lataxis.py index 252418069a..aeb1df909a 100644 --- a/plotly/graph_objs/layout/geo/_lataxis.py +++ b/plotly/graph_objs/layout/geo/_lataxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -194,13 +197,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtick=None, - gridcolor=None, - griddash=None, - gridwidth=None, - range=None, - showgrid=None, - tick0=None, + dtick: int|float|None = None, + gridcolor: str|None = None, + griddash: str|None = None, + gridwidth: int|float|None = None, + range: list|None = None, + showgrid: bool|None = None, + tick0: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/geo/_lonaxis.py b/plotly/graph_objs/layout/geo/_lonaxis.py index 44cece1086..ea4aed385b 100644 --- a/plotly/graph_objs/layout/geo/_lonaxis.py +++ b/plotly/graph_objs/layout/geo/_lonaxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -194,13 +197,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtick=None, - gridcolor=None, - griddash=None, - gridwidth=None, - range=None, - showgrid=None, - tick0=None, + dtick: int|float|None = None, + gridcolor: str|None = None, + griddash: str|None = None, + gridwidth: int|float|None = None, + range: list|None = None, + showgrid: bool|None = None, + tick0: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/geo/_projection.py b/plotly/graph_objs/layout/geo/_projection.py index 4aa5518fae..31240ce8c7 100644 --- a/plotly/graph_objs/layout/geo/_projection.py +++ b/plotly/graph_objs/layout/geo/_projection.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -194,12 +197,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - distance=None, - parallels=None, - rotation=None, - scale=None, - tilt=None, - type=None, + distance: int|float|None = None, + parallels: list|None = None, + rotation: None|None = None, + scale: int|float|None = None, + tilt: int|float|None = None, + type: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/geo/projection/_rotation.py b/plotly/graph_objs/layout/geo/projection/_rotation.py index 4cb605871f..a353a6093a 100644 --- a/plotly/graph_objs/layout/geo/projection/_rotation.py +++ b/plotly/graph_objs/layout/geo/projection/_rotation.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - lat=None, - lon=None, - roll=None, + lat: int|float|None = None, + lon: int|float|None = None, + roll: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/grid/_domain.py b/plotly/graph_objs/layout/grid/_domain.py index 5de410518a..cfe30b6191 100644 --- a/plotly/graph_objs/layout/grid/_domain.py +++ b/plotly/graph_objs/layout/grid/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -82,8 +85,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/hoverlabel/_font.py b/plotly/graph_objs/layout/hoverlabel/_font.py index 16d47ce048..2fc1e2024e 100644 --- a/plotly/graph_objs/layout/hoverlabel/_font.py +++ b/plotly/graph_objs/layout/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/hoverlabel/_grouptitlefont.py b/plotly/graph_objs/layout/hoverlabel/_grouptitlefont.py index 0a5089baa9..9b2aac7c5c 100644 --- a/plotly/graph_objs/layout/hoverlabel/_grouptitlefont.py +++ b/plotly/graph_objs/layout/hoverlabel/_grouptitlefont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/legend/_font.py b/plotly/graph_objs/layout/legend/_font.py index cf14f13cee..2c63d079ea 100644 --- a/plotly/graph_objs/layout/legend/_font.py +++ b/plotly/graph_objs/layout/legend/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/legend/_grouptitlefont.py b/plotly/graph_objs/layout/legend/_grouptitlefont.py index 84912c2301..66cdc4437c 100644 --- a/plotly/graph_objs/layout/legend/_grouptitlefont.py +++ b/plotly/graph_objs/layout/legend/_grouptitlefont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/legend/_title.py b/plotly/graph_objs/layout/legend/_title.py index 6cf9f7c60c..7497378e15 100644 --- a/plotly/graph_objs/layout/legend/_title.py +++ b/plotly/graph_objs/layout/legend/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -102,9 +105,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/legend/title/_font.py b/plotly/graph_objs/layout/legend/title/_font.py index 80e2df4c59..b15f800ef8 100644 --- a/plotly/graph_objs/layout/legend/title/_font.py +++ b/plotly/graph_objs/layout/legend/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/map/_bounds.py b/plotly/graph_objs/layout/map/_bounds.py index 96424e1341..b8bba54af0 100644 --- a/plotly/graph_objs/layout/map/_bounds.py +++ b/plotly/graph_objs/layout/map/_bounds.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -116,10 +119,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - east=None, - north=None, - south=None, - west=None, + east: int|float|None = None, + north: int|float|None = None, + south: int|float|None = None, + west: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/map/_center.py b/plotly/graph_objs/layout/map/_center.py index 137f9b909b..2ee72035ed 100644 --- a/plotly/graph_objs/layout/map/_center.py +++ b/plotly/graph_objs/layout/map/_center.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -66,8 +69,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - lat=None, - lon=None, + lat: int|float|None = None, + lon: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/map/_domain.py b/plotly/graph_objs/layout/map/_domain.py index f4990b4e6e..7d34df1318 100644 --- a/plotly/graph_objs/layout/map/_domain.py +++ b/plotly/graph_objs/layout/map/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/map/_layer.py b/plotly/graph_objs/layout/map/_layer.py index c138d0c73d..43b4e424fb 100644 --- a/plotly/graph_objs/layout/map/_layer.py +++ b/plotly/graph_objs/layout/map/_layer.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -537,24 +540,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - below=None, - circle=None, - color=None, - coordinates=None, - fill=None, - line=None, - maxzoom=None, - minzoom=None, - name=None, - opacity=None, - source=None, - sourceattribution=None, - sourcelayer=None, - sourcetype=None, - symbol=None, - templateitemname=None, - type=None, - visible=None, + below: str|None = None, + circle: None|None = None, + color: str|None = None, + coordinates: Any|None = None, + fill: None|None = None, + line: None|None = None, + maxzoom: int|float|None = None, + minzoom: int|float|None = None, + name: str|None = None, + opacity: int|float|None = None, + source: Any|None = None, + sourceattribution: str|None = None, + sourcelayer: str|None = None, + sourcetype: Any|None = None, + symbol: None|None = None, + templateitemname: str|None = None, + type: Any|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/map/layer/_circle.py b/plotly/graph_objs/layout/map/layer/_circle.py index 48602c3b83..a29c1f384b 100644 --- a/plotly/graph_objs/layout/map/layer/_circle.py +++ b/plotly/graph_objs/layout/map/layer/_circle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - radius=None, + radius: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/map/layer/_fill.py b/plotly/graph_objs/layout/map/layer/_fill.py index a9fcc28996..4c886a43ba 100644 --- a/plotly/graph_objs/layout/map/layer/_fill.py +++ b/plotly/graph_objs/layout/map/layer/_fill.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -49,7 +52,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - outlinecolor=None, + outlinecolor: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/map/layer/_line.py b/plotly/graph_objs/layout/map/layer/_line.py index 221a327066..fbe1b170cb 100644 --- a/plotly/graph_objs/layout/map/layer/_line.py +++ b/plotly/graph_objs/layout/map/layer/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -25,7 +28,7 @@ def dash(self): Returns ------- - numpy.ndarray + NDArray """ return self['dash'] @@ -92,9 +95,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dash=None, - dashsrc=None, - width=None, + dash: NDArray|None = None, + dashsrc: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/map/layer/_symbol.py b/plotly/graph_objs/layout/map/layer/_symbol.py index ae1cd20fbc..8cbc083110 100644 --- a/plotly/graph_objs/layout/map/layer/_symbol.py +++ b/plotly/graph_objs/layout/map/layer/_symbol.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -182,12 +185,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - icon=None, - iconsize=None, - placement=None, - text=None, - textfont=None, - textposition=None, + icon: str|None = None, + iconsize: int|float|None = None, + placement: Any|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/map/layer/symbol/_textfont.py b/plotly/graph_objs/layout/map/layer/symbol/_textfont.py index d244a5e0e6..c013d2fa65 100644 --- a/plotly/graph_objs/layout/map/layer/symbol/_textfont.py +++ b/plotly/graph_objs/layout/map/layer/symbol/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -144,11 +147,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - size=None, - style=None, - weight=None, + color: str|None = None, + family: str|None = None, + size: int|float|None = None, + style: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/mapbox/_bounds.py b/plotly/graph_objs/layout/mapbox/_bounds.py index a885fc5d66..3e5385f0c8 100644 --- a/plotly/graph_objs/layout/mapbox/_bounds.py +++ b/plotly/graph_objs/layout/mapbox/_bounds.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -116,10 +119,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - east=None, - north=None, - south=None, - west=None, + east: int|float|None = None, + north: int|float|None = None, + south: int|float|None = None, + west: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/mapbox/_center.py b/plotly/graph_objs/layout/mapbox/_center.py index 3357e121c2..9ebcbfebb9 100644 --- a/plotly/graph_objs/layout/mapbox/_center.py +++ b/plotly/graph_objs/layout/mapbox/_center.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -66,8 +69,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - lat=None, - lon=None, + lat: int|float|None = None, + lon: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/mapbox/_domain.py b/plotly/graph_objs/layout/mapbox/_domain.py index c0efb06acf..64a6599c61 100644 --- a/plotly/graph_objs/layout/mapbox/_domain.py +++ b/plotly/graph_objs/layout/mapbox/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/mapbox/_layer.py b/plotly/graph_objs/layout/mapbox/_layer.py index fa6a8f57bf..97739cf0b1 100644 --- a/plotly/graph_objs/layout/mapbox/_layer.py +++ b/plotly/graph_objs/layout/mapbox/_layer.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -540,24 +543,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - below=None, - circle=None, - color=None, - coordinates=None, - fill=None, - line=None, - maxzoom=None, - minzoom=None, - name=None, - opacity=None, - source=None, - sourceattribution=None, - sourcelayer=None, - sourcetype=None, - symbol=None, - templateitemname=None, - type=None, - visible=None, + below: str|None = None, + circle: None|None = None, + color: str|None = None, + coordinates: Any|None = None, + fill: None|None = None, + line: None|None = None, + maxzoom: int|float|None = None, + minzoom: int|float|None = None, + name: str|None = None, + opacity: int|float|None = None, + source: Any|None = None, + sourceattribution: str|None = None, + sourcelayer: str|None = None, + sourcetype: Any|None = None, + symbol: None|None = None, + templateitemname: str|None = None, + type: Any|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/mapbox/layer/_circle.py b/plotly/graph_objs/layout/mapbox/layer/_circle.py index 1fc8f2b607..9d96c2e6e2 100644 --- a/plotly/graph_objs/layout/mapbox/layer/_circle.py +++ b/plotly/graph_objs/layout/mapbox/layer/_circle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -45,7 +48,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - radius=None, + radius: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/mapbox/layer/_fill.py b/plotly/graph_objs/layout/mapbox/layer/_fill.py index 043d65df4b..8ab9b82485 100644 --- a/plotly/graph_objs/layout/mapbox/layer/_fill.py +++ b/plotly/graph_objs/layout/mapbox/layer/_fill.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -49,7 +52,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - outlinecolor=None, + outlinecolor: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/mapbox/layer/_line.py b/plotly/graph_objs/layout/mapbox/layer/_line.py index 3a4eeeb27e..3309b4463d 100644 --- a/plotly/graph_objs/layout/mapbox/layer/_line.py +++ b/plotly/graph_objs/layout/mapbox/layer/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -25,7 +28,7 @@ def dash(self): Returns ------- - numpy.ndarray + NDArray """ return self['dash'] @@ -92,9 +95,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dash=None, - dashsrc=None, - width=None, + dash: NDArray|None = None, + dashsrc: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/mapbox/layer/_symbol.py b/plotly/graph_objs/layout/mapbox/layer/_symbol.py index 8b993d797f..4501e4ca65 100644 --- a/plotly/graph_objs/layout/mapbox/layer/_symbol.py +++ b/plotly/graph_objs/layout/mapbox/layer/_symbol.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -183,12 +186,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - icon=None, - iconsize=None, - placement=None, - text=None, - textfont=None, - textposition=None, + icon: str|None = None, + iconsize: int|float|None = None, + placement: Any|None = None, + text: str|None = None, + textfont: None|None = None, + textposition: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/mapbox/layer/symbol/_textfont.py b/plotly/graph_objs/layout/mapbox/layer/symbol/_textfont.py index 963c98e658..36fab2f2b7 100644 --- a/plotly/graph_objs/layout/mapbox/layer/symbol/_textfont.py +++ b/plotly/graph_objs/layout/mapbox/layer/symbol/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -144,11 +147,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - size=None, - style=None, - weight=None, + color: str|None = None, + family: str|None = None, + size: int|float|None = None, + style: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/newselection/_line.py b/plotly/graph_objs/layout/newselection/_line.py index 9fab1a798c..2202d7e6a3 100644 --- a/plotly/graph_objs/layout/newselection/_line.py +++ b/plotly/graph_objs/layout/newselection/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -101,9 +104,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str|None = None, + dash: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/newshape/_label.py b/plotly/graph_objs/layout/newshape/_label.py index 73319da4f0..a1c369e190 100644 --- a/plotly/graph_objs/layout/newshape/_label.py +++ b/plotly/graph_objs/layout/newshape/_label.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -290,14 +293,14 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - padding=None, - text=None, - textangle=None, - textposition=None, - texttemplate=None, - xanchor=None, - yanchor=None, + font: None|None = None, + padding: int|float|None = None, + text: str|None = None, + textangle: int|float|None = None, + textposition: Any|None = None, + texttemplate: str|None = None, + xanchor: Any|None = None, + yanchor: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/newshape/_legendgrouptitle.py b/plotly/graph_objs/layout/newshape/_legendgrouptitle.py index 54bb33f83b..e70d292485 100644 --- a/plotly/graph_objs/layout/newshape/_legendgrouptitle.py +++ b/plotly/graph_objs/layout/newshape/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/newshape/_line.py b/plotly/graph_objs/layout/newshape/_line.py index ccaede09b6..e6a0b74e02 100644 --- a/plotly/graph_objs/layout/newshape/_line.py +++ b/plotly/graph_objs/layout/newshape/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -101,9 +104,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str|None = None, + dash: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/newshape/label/_font.py b/plotly/graph_objs/layout/newshape/label/_font.py index 05746badfe..de433aadd7 100644 --- a/plotly/graph_objs/layout/newshape/label/_font.py +++ b/plotly/graph_objs/layout/newshape/label/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/newshape/legendgrouptitle/_font.py b/plotly/graph_objs/layout/newshape/legendgrouptitle/_font.py index 5cef85f4b8..da70e19562 100644 --- a/plotly/graph_objs/layout/newshape/legendgrouptitle/_font.py +++ b/plotly/graph_objs/layout/newshape/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/polar/_angularaxis.py b/plotly/graph_objs/layout/polar/_angularaxis.py index 00d973404c..4278e5ee3b 100644 --- a/plotly/graph_objs/layout/polar/_angularaxis.py +++ b/plotly/graph_objs/layout/polar/_angularaxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -50,7 +53,7 @@ def categoryarray(self): Returns ------- - numpy.ndarray + NDArray """ return self['categoryarray'] @@ -1019,7 +1022,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -1060,7 +1063,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1435,55 +1438,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autotypenumbers=None, - categoryarray=None, - categoryarraysrc=None, - categoryorder=None, - color=None, - direction=None, - dtick=None, - exponentformat=None, - gridcolor=None, - griddash=None, - gridwidth=None, - hoverformat=None, - labelalias=None, - layer=None, - linecolor=None, - linewidth=None, - minexponent=None, - nticks=None, - period=None, - rotation=None, - separatethousands=None, - showexponent=None, - showgrid=None, - showline=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thetaunit=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - type=None, - uirevision=None, - visible=None, + autotypenumbers: Any|None = None, + categoryarray: NDArray|None = None, + categoryarraysrc: str|None = None, + categoryorder: Any|None = None, + color: str|None = None, + direction: Any|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + gridcolor: str|None = None, + griddash: str|None = None, + gridwidth: int|float|None = None, + hoverformat: str|None = None, + labelalias: Any|None = None, + layer: Any|None = None, + linecolor: str|None = None, + linewidth: int|float|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + period: int|float|None = None, + rotation: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showgrid: bool|None = None, + showline: bool|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thetaunit: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + type: Any|None = None, + uirevision: Any|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/polar/_domain.py b/plotly/graph_objs/layout/polar/_domain.py index 64d74f38a8..0e8d6f34f0 100644 --- a/plotly/graph_objs/layout/polar/_domain.py +++ b/plotly/graph_objs/layout/polar/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/polar/_radialaxis.py b/plotly/graph_objs/layout/polar/_radialaxis.py index 73696e1842..f591f4f677 100644 --- a/plotly/graph_objs/layout/polar/_radialaxis.py +++ b/plotly/graph_objs/layout/polar/_radialaxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -181,7 +184,7 @@ def categoryarray(self): Returns ------- - numpy.ndarray + NDArray """ return self['categoryarray'] @@ -1176,7 +1179,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -1217,7 +1220,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1657,62 +1660,62 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - angle=None, - autorange=None, - autorangeoptions=None, - autotickangles=None, - autotypenumbers=None, - calendar=None, - categoryarray=None, - categoryarraysrc=None, - categoryorder=None, - color=None, - dtick=None, - exponentformat=None, - gridcolor=None, - griddash=None, - gridwidth=None, - hoverformat=None, - labelalias=None, - layer=None, - linecolor=None, - linewidth=None, - maxallowed=None, - minallowed=None, - minexponent=None, - nticks=None, - range=None, - rangemode=None, - separatethousands=None, - showexponent=None, - showgrid=None, - showline=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - side=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - type=None, - uirevision=None, - visible=None, + angle: int|float|None = None, + autorange: Any|None = None, + autorangeoptions: None|None = None, + autotickangles: list|None = None, + autotypenumbers: Any|None = None, + calendar: Any|None = None, + categoryarray: NDArray|None = None, + categoryarraysrc: str|None = None, + categoryorder: Any|None = None, + color: str|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + gridcolor: str|None = None, + griddash: str|None = None, + gridwidth: int|float|None = None, + hoverformat: str|None = None, + labelalias: Any|None = None, + layer: Any|None = None, + linecolor: str|None = None, + linewidth: int|float|None = None, + maxallowed: Any|None = None, + minallowed: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + range: list|None = None, + rangemode: Any|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showgrid: bool|None = None, + showline: bool|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + side: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + type: Any|None = None, + uirevision: Any|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/polar/angularaxis/_tickfont.py b/plotly/graph_objs/layout/polar/angularaxis/_tickfont.py index af9a5e8148..cc784939be 100644 --- a/plotly/graph_objs/layout/polar/angularaxis/_tickfont.py +++ b/plotly/graph_objs/layout/polar/angularaxis/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/polar/angularaxis/_tickformatstop.py b/plotly/graph_objs/layout/polar/angularaxis/_tickformatstop.py index ebd6121da7..a095f7ab84 100644 --- a/plotly/graph_objs/layout/polar/angularaxis/_tickformatstop.py +++ b/plotly/graph_objs/layout/polar/angularaxis/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/polar/radialaxis/_autorangeoptions.py b/plotly/graph_objs/layout/polar/radialaxis/_autorangeoptions.py index 15d9ddbacb..dd874dd6b0 100644 --- a/plotly/graph_objs/layout/polar/radialaxis/_autorangeoptions.py +++ b/plotly/graph_objs/layout/polar/radialaxis/_autorangeoptions.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -63,7 +66,7 @@ def include(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['include'] @@ -154,12 +157,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - clipmax=None, - clipmin=None, - include=None, - includesrc=None, - maxallowed=None, - minallowed=None, + clipmax: Any|None = None, + clipmin: Any|None = None, + include: Any|None = None, + includesrc: str|None = None, + maxallowed: Any|None = None, + minallowed: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/polar/radialaxis/_tickfont.py b/plotly/graph_objs/layout/polar/radialaxis/_tickfont.py index 5e14fe0d25..d72ec9795e 100644 --- a/plotly/graph_objs/layout/polar/radialaxis/_tickfont.py +++ b/plotly/graph_objs/layout/polar/radialaxis/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/polar/radialaxis/_tickformatstop.py b/plotly/graph_objs/layout/polar/radialaxis/_tickformatstop.py index 30321349b5..193c921cc9 100644 --- a/plotly/graph_objs/layout/polar/radialaxis/_tickformatstop.py +++ b/plotly/graph_objs/layout/polar/radialaxis/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/polar/radialaxis/_title.py b/plotly/graph_objs/layout/polar/radialaxis/_title.py index 5d3e247456..b534350862 100644 --- a/plotly/graph_objs/layout/polar/radialaxis/_title.py +++ b/plotly/graph_objs/layout/polar/radialaxis/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/polar/radialaxis/title/_font.py b/plotly/graph_objs/layout/polar/radialaxis/title/_font.py index f22c9f6a91..f92568925c 100644 --- a/plotly/graph_objs/layout/polar/radialaxis/title/_font.py +++ b/plotly/graph_objs/layout/polar/radialaxis/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/_annotation.py b/plotly/graph_objs/layout/scene/_annotation.py index abd306ce29..c879712353 100644 --- a/plotly/graph_objs/layout/scene/_annotation.py +++ b/plotly/graph_objs/layout/scene/_annotation.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -1011,43 +1014,43 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - arrowcolor=None, - arrowhead=None, - arrowside=None, - arrowsize=None, - arrowwidth=None, - ax=None, - ay=None, - bgcolor=None, - bordercolor=None, - borderpad=None, - borderwidth=None, - captureevents=None, - font=None, - height=None, - hoverlabel=None, - hovertext=None, - name=None, - opacity=None, - showarrow=None, - standoff=None, - startarrowhead=None, - startarrowsize=None, - startstandoff=None, - templateitemname=None, - text=None, - textangle=None, - valign=None, - visible=None, - width=None, - x=None, - xanchor=None, - xshift=None, - y=None, - yanchor=None, - yshift=None, - z=None, + align: Any|None = None, + arrowcolor: str|None = None, + arrowhead: int|None = None, + arrowside: Any|None = None, + arrowsize: int|float|None = None, + arrowwidth: int|float|None = None, + ax: int|float|None = None, + ay: int|float|None = None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderpad: int|float|None = None, + borderwidth: int|float|None = None, + captureevents: bool|None = None, + font: None|None = None, + height: int|float|None = None, + hoverlabel: None|None = None, + hovertext: str|None = None, + name: str|None = None, + opacity: int|float|None = None, + showarrow: bool|None = None, + standoff: int|float|None = None, + startarrowhead: int|None = None, + startarrowsize: int|float|None = None, + startstandoff: int|float|None = None, + templateitemname: str|None = None, + text: str|None = None, + textangle: int|float|None = None, + valign: Any|None = None, + visible: bool|None = None, + width: int|float|None = None, + x: Any|None = None, + xanchor: Any|None = None, + xshift: int|float|None = None, + y: Any|None = None, + yanchor: Any|None = None, + yshift: int|float|None = None, + z: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/_aspectratio.py b/plotly/graph_objs/layout/scene/_aspectratio.py index 4b904f9e64..54e3916a47 100644 --- a/plotly/graph_objs/layout/scene/_aspectratio.py +++ b/plotly/graph_objs/layout/scene/_aspectratio.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -80,9 +83,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float|None = None, + y: int|float|None = None, + z: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/_camera.py b/plotly/graph_objs/layout/scene/_camera.py index 860dd122ee..803c05d908 100644 --- a/plotly/graph_objs/layout/scene/_camera.py +++ b/plotly/graph_objs/layout/scene/_camera.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -134,10 +137,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - center=None, - eye=None, - projection=None, - up=None, + center: None|None = None, + eye: None|None = None, + projection: None|None = None, + up: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/_domain.py b/plotly/graph_objs/layout/scene/_domain.py index 82d6b713ed..fce72d27f7 100644 --- a/plotly/graph_objs/layout/scene/_domain.py +++ b/plotly/graph_objs/layout/scene/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/_xaxis.py b/plotly/graph_objs/layout/scene/_xaxis.py index aad84552aa..17c6d6b1c5 100644 --- a/plotly/graph_objs/layout/scene/_xaxis.py +++ b/plotly/graph_objs/layout/scene/_xaxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -153,7 +156,7 @@ def categoryarray(self): Returns ------- - numpy.ndarray + NDArray """ return self['categoryarray'] @@ -1201,7 +1204,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -1242,7 +1245,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1721,66 +1724,66 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autorange=None, - autorangeoptions=None, - autotypenumbers=None, - backgroundcolor=None, - calendar=None, - categoryarray=None, - categoryarraysrc=None, - categoryorder=None, - color=None, - dtick=None, - exponentformat=None, - gridcolor=None, - gridwidth=None, - hoverformat=None, - labelalias=None, - linecolor=None, - linewidth=None, - maxallowed=None, - minallowed=None, - minexponent=None, - mirror=None, - nticks=None, - range=None, - rangemode=None, - separatethousands=None, - showaxeslabels=None, - showbackground=None, - showexponent=None, - showgrid=None, - showline=None, - showspikes=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - spikecolor=None, - spikesides=None, - spikethickness=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - type=None, - visible=None, - zeroline=None, - zerolinecolor=None, - zerolinewidth=None, + autorange: Any|None = None, + autorangeoptions: None|None = None, + autotypenumbers: Any|None = None, + backgroundcolor: str|None = None, + calendar: Any|None = None, + categoryarray: NDArray|None = None, + categoryarraysrc: str|None = None, + categoryorder: Any|None = None, + color: str|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + gridcolor: str|None = None, + gridwidth: int|float|None = None, + hoverformat: str|None = None, + labelalias: Any|None = None, + linecolor: str|None = None, + linewidth: int|float|None = None, + maxallowed: Any|None = None, + minallowed: Any|None = None, + minexponent: int|float|None = None, + mirror: Any|None = None, + nticks: int|None = None, + range: list|None = None, + rangemode: Any|None = None, + separatethousands: bool|None = None, + showaxeslabels: bool|None = None, + showbackground: bool|None = None, + showexponent: Any|None = None, + showgrid: bool|None = None, + showline: bool|None = None, + showspikes: bool|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + spikecolor: str|None = None, + spikesides: bool|None = None, + spikethickness: int|float|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + type: Any|None = None, + visible: bool|None = None, + zeroline: bool|None = None, + zerolinecolor: str|None = None, + zerolinewidth: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/_yaxis.py b/plotly/graph_objs/layout/scene/_yaxis.py index 2edc0f35f2..c46474820c 100644 --- a/plotly/graph_objs/layout/scene/_yaxis.py +++ b/plotly/graph_objs/layout/scene/_yaxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -153,7 +156,7 @@ def categoryarray(self): Returns ------- - numpy.ndarray + NDArray """ return self['categoryarray'] @@ -1201,7 +1204,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -1242,7 +1245,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1721,66 +1724,66 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autorange=None, - autorangeoptions=None, - autotypenumbers=None, - backgroundcolor=None, - calendar=None, - categoryarray=None, - categoryarraysrc=None, - categoryorder=None, - color=None, - dtick=None, - exponentformat=None, - gridcolor=None, - gridwidth=None, - hoverformat=None, - labelalias=None, - linecolor=None, - linewidth=None, - maxallowed=None, - minallowed=None, - minexponent=None, - mirror=None, - nticks=None, - range=None, - rangemode=None, - separatethousands=None, - showaxeslabels=None, - showbackground=None, - showexponent=None, - showgrid=None, - showline=None, - showspikes=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - spikecolor=None, - spikesides=None, - spikethickness=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - type=None, - visible=None, - zeroline=None, - zerolinecolor=None, - zerolinewidth=None, + autorange: Any|None = None, + autorangeoptions: None|None = None, + autotypenumbers: Any|None = None, + backgroundcolor: str|None = None, + calendar: Any|None = None, + categoryarray: NDArray|None = None, + categoryarraysrc: str|None = None, + categoryorder: Any|None = None, + color: str|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + gridcolor: str|None = None, + gridwidth: int|float|None = None, + hoverformat: str|None = None, + labelalias: Any|None = None, + linecolor: str|None = None, + linewidth: int|float|None = None, + maxallowed: Any|None = None, + minallowed: Any|None = None, + minexponent: int|float|None = None, + mirror: Any|None = None, + nticks: int|None = None, + range: list|None = None, + rangemode: Any|None = None, + separatethousands: bool|None = None, + showaxeslabels: bool|None = None, + showbackground: bool|None = None, + showexponent: Any|None = None, + showgrid: bool|None = None, + showline: bool|None = None, + showspikes: bool|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + spikecolor: str|None = None, + spikesides: bool|None = None, + spikethickness: int|float|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + type: Any|None = None, + visible: bool|None = None, + zeroline: bool|None = None, + zerolinecolor: str|None = None, + zerolinewidth: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/_zaxis.py b/plotly/graph_objs/layout/scene/_zaxis.py index 16e1a6bdfb..4334e52f4a 100644 --- a/plotly/graph_objs/layout/scene/_zaxis.py +++ b/plotly/graph_objs/layout/scene/_zaxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -153,7 +156,7 @@ def categoryarray(self): Returns ------- - numpy.ndarray + NDArray """ return self['categoryarray'] @@ -1201,7 +1204,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -1242,7 +1245,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1721,66 +1724,66 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autorange=None, - autorangeoptions=None, - autotypenumbers=None, - backgroundcolor=None, - calendar=None, - categoryarray=None, - categoryarraysrc=None, - categoryorder=None, - color=None, - dtick=None, - exponentformat=None, - gridcolor=None, - gridwidth=None, - hoverformat=None, - labelalias=None, - linecolor=None, - linewidth=None, - maxallowed=None, - minallowed=None, - minexponent=None, - mirror=None, - nticks=None, - range=None, - rangemode=None, - separatethousands=None, - showaxeslabels=None, - showbackground=None, - showexponent=None, - showgrid=None, - showline=None, - showspikes=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - spikecolor=None, - spikesides=None, - spikethickness=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - type=None, - visible=None, - zeroline=None, - zerolinecolor=None, - zerolinewidth=None, + autorange: Any|None = None, + autorangeoptions: None|None = None, + autotypenumbers: Any|None = None, + backgroundcolor: str|None = None, + calendar: Any|None = None, + categoryarray: NDArray|None = None, + categoryarraysrc: str|None = None, + categoryorder: Any|None = None, + color: str|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + gridcolor: str|None = None, + gridwidth: int|float|None = None, + hoverformat: str|None = None, + labelalias: Any|None = None, + linecolor: str|None = None, + linewidth: int|float|None = None, + maxallowed: Any|None = None, + minallowed: Any|None = None, + minexponent: int|float|None = None, + mirror: Any|None = None, + nticks: int|None = None, + range: list|None = None, + rangemode: Any|None = None, + separatethousands: bool|None = None, + showaxeslabels: bool|None = None, + showbackground: bool|None = None, + showexponent: Any|None = None, + showgrid: bool|None = None, + showline: bool|None = None, + showspikes: bool|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + spikecolor: str|None = None, + spikesides: bool|None = None, + spikethickness: int|float|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + type: Any|None = None, + visible: bool|None = None, + zeroline: bool|None = None, + zerolinecolor: str|None = None, + zerolinewidth: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/annotation/_font.py b/plotly/graph_objs/layout/scene/annotation/_font.py index 7487199de0..ba9b22b93d 100644 --- a/plotly/graph_objs/layout/scene/annotation/_font.py +++ b/plotly/graph_objs/layout/scene/annotation/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/annotation/_hoverlabel.py b/plotly/graph_objs/layout/scene/annotation/_hoverlabel.py index 4f2a5a2a32..d334c6f9af 100644 --- a/plotly/graph_objs/layout/scene/annotation/_hoverlabel.py +++ b/plotly/graph_objs/layout/scene/annotation/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -108,9 +111,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - font=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + font: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/annotation/hoverlabel/_font.py b/plotly/graph_objs/layout/scene/annotation/hoverlabel/_font.py index 560fb7640d..27b3a25fc7 100644 --- a/plotly/graph_objs/layout/scene/annotation/hoverlabel/_font.py +++ b/plotly/graph_objs/layout/scene/annotation/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/camera/_center.py b/plotly/graph_objs/layout/scene/camera/_center.py index 5c25d314a2..c4a6bac360 100644 --- a/plotly/graph_objs/layout/scene/camera/_center.py +++ b/plotly/graph_objs/layout/scene/camera/_center.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -80,9 +83,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float|None = None, + y: int|float|None = None, + z: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/camera/_eye.py b/plotly/graph_objs/layout/scene/camera/_eye.py index bbe4abdfcd..7f6e82ef9a 100644 --- a/plotly/graph_objs/layout/scene/camera/_eye.py +++ b/plotly/graph_objs/layout/scene/camera/_eye.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -80,9 +83,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float|None = None, + y: int|float|None = None, + z: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/camera/_projection.py b/plotly/graph_objs/layout/scene/camera/_projection.py index d921b4327f..9917a233cd 100644 --- a/plotly/graph_objs/layout/scene/camera/_projection.py +++ b/plotly/graph_objs/layout/scene/camera/_projection.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -46,7 +49,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - type=None, + type: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/camera/_up.py b/plotly/graph_objs/layout/scene/camera/_up.py index 9ebe64a08e..fbff793229 100644 --- a/plotly/graph_objs/layout/scene/camera/_up.py +++ b/plotly/graph_objs/layout/scene/camera/_up.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -80,9 +83,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float|None = None, + y: int|float|None = None, + z: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/xaxis/_autorangeoptions.py b/plotly/graph_objs/layout/scene/xaxis/_autorangeoptions.py index 5191881679..49b6f961d5 100644 --- a/plotly/graph_objs/layout/scene/xaxis/_autorangeoptions.py +++ b/plotly/graph_objs/layout/scene/xaxis/_autorangeoptions.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -63,7 +66,7 @@ def include(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['include'] @@ -154,12 +157,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - clipmax=None, - clipmin=None, - include=None, - includesrc=None, - maxallowed=None, - minallowed=None, + clipmax: Any|None = None, + clipmin: Any|None = None, + include: Any|None = None, + includesrc: str|None = None, + maxallowed: Any|None = None, + minallowed: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/xaxis/_tickfont.py b/plotly/graph_objs/layout/scene/xaxis/_tickfont.py index e2b7c42eff..fb498cdcbd 100644 --- a/plotly/graph_objs/layout/scene/xaxis/_tickfont.py +++ b/plotly/graph_objs/layout/scene/xaxis/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/xaxis/_tickformatstop.py b/plotly/graph_objs/layout/scene/xaxis/_tickformatstop.py index 5ac4c5b05a..59a21c046b 100644 --- a/plotly/graph_objs/layout/scene/xaxis/_tickformatstop.py +++ b/plotly/graph_objs/layout/scene/xaxis/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/xaxis/_title.py b/plotly/graph_objs/layout/scene/xaxis/_title.py index 3908a6f846..294a7e15c5 100644 --- a/plotly/graph_objs/layout/scene/xaxis/_title.py +++ b/plotly/graph_objs/layout/scene/xaxis/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/xaxis/title/_font.py b/plotly/graph_objs/layout/scene/xaxis/title/_font.py index c404e43418..d668ba1ad7 100644 --- a/plotly/graph_objs/layout/scene/xaxis/title/_font.py +++ b/plotly/graph_objs/layout/scene/xaxis/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/yaxis/_autorangeoptions.py b/plotly/graph_objs/layout/scene/yaxis/_autorangeoptions.py index eb0a488c2b..53d55acc89 100644 --- a/plotly/graph_objs/layout/scene/yaxis/_autorangeoptions.py +++ b/plotly/graph_objs/layout/scene/yaxis/_autorangeoptions.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -63,7 +66,7 @@ def include(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['include'] @@ -154,12 +157,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - clipmax=None, - clipmin=None, - include=None, - includesrc=None, - maxallowed=None, - minallowed=None, + clipmax: Any|None = None, + clipmin: Any|None = None, + include: Any|None = None, + includesrc: str|None = None, + maxallowed: Any|None = None, + minallowed: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/yaxis/_tickfont.py b/plotly/graph_objs/layout/scene/yaxis/_tickfont.py index 7b41eb9c74..f4eda75336 100644 --- a/plotly/graph_objs/layout/scene/yaxis/_tickfont.py +++ b/plotly/graph_objs/layout/scene/yaxis/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/yaxis/_tickformatstop.py b/plotly/graph_objs/layout/scene/yaxis/_tickformatstop.py index 47387b8560..0b6954963e 100644 --- a/plotly/graph_objs/layout/scene/yaxis/_tickformatstop.py +++ b/plotly/graph_objs/layout/scene/yaxis/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/yaxis/_title.py b/plotly/graph_objs/layout/scene/yaxis/_title.py index 1ac869973b..e92e3a3255 100644 --- a/plotly/graph_objs/layout/scene/yaxis/_title.py +++ b/plotly/graph_objs/layout/scene/yaxis/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/yaxis/title/_font.py b/plotly/graph_objs/layout/scene/yaxis/title/_font.py index 4a9ebd95fa..2d0af21154 100644 --- a/plotly/graph_objs/layout/scene/yaxis/title/_font.py +++ b/plotly/graph_objs/layout/scene/yaxis/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/zaxis/_autorangeoptions.py b/plotly/graph_objs/layout/scene/zaxis/_autorangeoptions.py index 70ed37f387..90f6642807 100644 --- a/plotly/graph_objs/layout/scene/zaxis/_autorangeoptions.py +++ b/plotly/graph_objs/layout/scene/zaxis/_autorangeoptions.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -63,7 +66,7 @@ def include(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['include'] @@ -154,12 +157,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - clipmax=None, - clipmin=None, - include=None, - includesrc=None, - maxallowed=None, - minallowed=None, + clipmax: Any|None = None, + clipmin: Any|None = None, + include: Any|None = None, + includesrc: str|None = None, + maxallowed: Any|None = None, + minallowed: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/zaxis/_tickfont.py b/plotly/graph_objs/layout/scene/zaxis/_tickfont.py index 84cb6c92b6..286ec6c34a 100644 --- a/plotly/graph_objs/layout/scene/zaxis/_tickfont.py +++ b/plotly/graph_objs/layout/scene/zaxis/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/zaxis/_tickformatstop.py b/plotly/graph_objs/layout/scene/zaxis/_tickformatstop.py index 701e00c170..cbf43297c3 100644 --- a/plotly/graph_objs/layout/scene/zaxis/_tickformatstop.py +++ b/plotly/graph_objs/layout/scene/zaxis/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/zaxis/_title.py b/plotly/graph_objs/layout/scene/zaxis/_title.py index d60a3a34ee..59eba976ca 100644 --- a/plotly/graph_objs/layout/scene/zaxis/_title.py +++ b/plotly/graph_objs/layout/scene/zaxis/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/scene/zaxis/title/_font.py b/plotly/graph_objs/layout/scene/zaxis/title/_font.py index c8b47090b2..2050315f33 100644 --- a/plotly/graph_objs/layout/scene/zaxis/title/_font.py +++ b/plotly/graph_objs/layout/scene/zaxis/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/selection/_line.py b/plotly/graph_objs/layout/selection/_line.py index 015be2e906..a2c1a57b2b 100644 --- a/plotly/graph_objs/layout/selection/_line.py +++ b/plotly/graph_objs/layout/selection/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -99,9 +102,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str|None = None, + dash: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/shape/_label.py b/plotly/graph_objs/layout/shape/_label.py index 0b9bb0c4c0..4c7abe62d9 100644 --- a/plotly/graph_objs/layout/shape/_label.py +++ b/plotly/graph_objs/layout/shape/_label.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -289,14 +292,14 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - padding=None, - text=None, - textangle=None, - textposition=None, - texttemplate=None, - xanchor=None, - yanchor=None, + font: None|None = None, + padding: int|float|None = None, + text: str|None = None, + textangle: int|float|None = None, + textposition: Any|None = None, + texttemplate: str|None = None, + xanchor: Any|None = None, + yanchor: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/shape/_legendgrouptitle.py b/plotly/graph_objs/layout/shape/_legendgrouptitle.py index bd673c7f10..fb9a60017b 100644 --- a/plotly/graph_objs/layout/shape/_legendgrouptitle.py +++ b/plotly/graph_objs/layout/shape/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/shape/_line.py b/plotly/graph_objs/layout/shape/_line.py index 888dea38f1..5bfefd72f3 100644 --- a/plotly/graph_objs/layout/shape/_line.py +++ b/plotly/graph_objs/layout/shape/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -99,9 +102,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str|None = None, + dash: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/shape/label/_font.py b/plotly/graph_objs/layout/shape/label/_font.py index 1ec2da2fee..c113196fc2 100644 --- a/plotly/graph_objs/layout/shape/label/_font.py +++ b/plotly/graph_objs/layout/shape/label/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/shape/legendgrouptitle/_font.py b/plotly/graph_objs/layout/shape/legendgrouptitle/_font.py index 653a20b0df..7741c2fb41 100644 --- a/plotly/graph_objs/layout/shape/legendgrouptitle/_font.py +++ b/plotly/graph_objs/layout/shape/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/slider/_currentvalue.py b/plotly/graph_objs/layout/slider/_currentvalue.py index 7264e0432e..4a2793aa25 100644 --- a/plotly/graph_objs/layout/slider/_currentvalue.py +++ b/plotly/graph_objs/layout/slider/_currentvalue.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -166,12 +169,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - offset=None, - prefix=None, - suffix=None, - visible=None, - xanchor=None, + font: None|None = None, + offset: int|float|None = None, + prefix: str|None = None, + suffix: str|None = None, + visible: bool|None = None, + xanchor: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/slider/_font.py b/plotly/graph_objs/layout/slider/_font.py index 5a93a0ed13..1a0eeb7cd7 100644 --- a/plotly/graph_objs/layout/slider/_font.py +++ b/plotly/graph_objs/layout/slider/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/slider/_pad.py b/plotly/graph_objs/layout/slider/_pad.py index b1ef4b92c5..6e60f5919c 100644 --- a/plotly/graph_objs/layout/slider/_pad.py +++ b/plotly/graph_objs/layout/slider/_pad.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -115,10 +118,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - b=None, - l=None, - r=None, - t=None, + b: int|float|None = None, + l: int|float|None = None, + r: int|float|None = None, + t: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/slider/_step.py b/plotly/graph_objs/layout/slider/_step.py index de0a7f9dea..ceb9e96ad6 100644 --- a/plotly/graph_objs/layout/slider/_step.py +++ b/plotly/graph_objs/layout/slider/_step.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -261,14 +264,14 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - args=None, - execute=None, - label=None, - method=None, - name=None, - templateitemname=None, - value=None, - visible=None, + args: list|None = None, + execute: bool|None = None, + label: str|None = None, + method: Any|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/slider/_transition.py b/plotly/graph_objs/layout/slider/_transition.py index 8054aa7a78..48dcb24bfa 100644 --- a/plotly/graph_objs/layout/slider/_transition.py +++ b/plotly/graph_objs/layout/slider/_transition.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - duration=None, - easing=None, + duration: int|float|None = None, + easing: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/slider/currentvalue/_font.py b/plotly/graph_objs/layout/slider/currentvalue/_font.py index 0af9afe141..def7252c18 100644 --- a/plotly/graph_objs/layout/slider/currentvalue/_font.py +++ b/plotly/graph_objs/layout/slider/currentvalue/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/smith/_domain.py b/plotly/graph_objs/layout/smith/_domain.py index 8e9c5d2516..d7322fb3a5 100644 --- a/plotly/graph_objs/layout/smith/_domain.py +++ b/plotly/graph_objs/layout/smith/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/smith/_imaginaryaxis.py b/plotly/graph_objs/layout/smith/_imaginaryaxis.py index c6043a72d3..cf68ef51ee 100644 --- a/plotly/graph_objs/layout/smith/_imaginaryaxis.py +++ b/plotly/graph_objs/layout/smith/_imaginaryaxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -517,7 +520,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -698,31 +701,31 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - gridcolor=None, - griddash=None, - gridwidth=None, - hoverformat=None, - labelalias=None, - layer=None, - linecolor=None, - linewidth=None, - showgrid=None, - showline=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - tickcolor=None, - tickfont=None, - tickformat=None, - ticklen=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - visible=None, + color: str|None = None, + gridcolor: str|None = None, + griddash: str|None = None, + gridwidth: int|float|None = None, + hoverformat: str|None = None, + labelalias: Any|None = None, + layer: Any|None = None, + linecolor: str|None = None, + linewidth: int|float|None = None, + showgrid: bool|None = None, + showline: bool|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + ticklen: int|float|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/smith/_realaxis.py b/plotly/graph_objs/layout/smith/_realaxis.py index 43c8518dd6..235c869c7c 100644 --- a/plotly/graph_objs/layout/smith/_realaxis.py +++ b/plotly/graph_objs/layout/smith/_realaxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -562,7 +565,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -748,33 +751,33 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - gridcolor=None, - griddash=None, - gridwidth=None, - hoverformat=None, - labelalias=None, - layer=None, - linecolor=None, - linewidth=None, - showgrid=None, - showline=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - side=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - ticklen=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - visible=None, + color: str|None = None, + gridcolor: str|None = None, + griddash: str|None = None, + gridwidth: int|float|None = None, + hoverformat: str|None = None, + labelalias: Any|None = None, + layer: Any|None = None, + linecolor: str|None = None, + linewidth: int|float|None = None, + showgrid: bool|None = None, + showline: bool|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + side: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + ticklen: int|float|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/smith/imaginaryaxis/_tickfont.py b/plotly/graph_objs/layout/smith/imaginaryaxis/_tickfont.py index 6ac0cfae88..f87df8686a 100644 --- a/plotly/graph_objs/layout/smith/imaginaryaxis/_tickfont.py +++ b/plotly/graph_objs/layout/smith/imaginaryaxis/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/smith/realaxis/_tickfont.py b/plotly/graph_objs/layout/smith/realaxis/_tickfont.py index a54627067e..a226ff9cee 100644 --- a/plotly/graph_objs/layout/smith/realaxis/_tickfont.py +++ b/plotly/graph_objs/layout/smith/realaxis/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/template/_data.py b/plotly/graph_objs/layout/template/_data.py index 55191fbe93..613a2d2dd1 100644 --- a/plotly/graph_objs/layout/template/_data.py +++ b/plotly/graph_objs/layout/template/_data.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -1198,55 +1201,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - barpolar=None, - bar=None, - box=None, - candlestick=None, - carpet=None, - choroplethmapbox=None, - choroplethmap=None, - choropleth=None, - cone=None, - contourcarpet=None, - contour=None, - densitymapbox=None, - densitymap=None, - funnelarea=None, - funnel=None, - heatmap=None, - histogram2dcontour=None, - histogram2d=None, - histogram=None, - icicle=None, - image=None, - indicator=None, - isosurface=None, - mesh3d=None, - ohlc=None, - parcats=None, - parcoords=None, - pie=None, - sankey=None, - scatter3d=None, - scattercarpet=None, - scattergeo=None, - scattergl=None, - scattermapbox=None, - scattermap=None, - scatterpolargl=None, - scatterpolar=None, - scatter=None, - scattersmith=None, - scatterternary=None, - splom=None, - streamtube=None, - sunburst=None, - surface=None, - table=None, - treemap=None, - violin=None, - volume=None, - waterfall=None, + barpolar: None|None = None, + bar: None|None = None, + box: None|None = None, + candlestick: None|None = None, + carpet: None|None = None, + choroplethmapbox: None|None = None, + choroplethmap: None|None = None, + choropleth: None|None = None, + cone: None|None = None, + contourcarpet: None|None = None, + contour: None|None = None, + densitymapbox: None|None = None, + densitymap: None|None = None, + funnelarea: None|None = None, + funnel: None|None = None, + heatmap: None|None = None, + histogram2dcontour: None|None = None, + histogram2d: None|None = None, + histogram: None|None = None, + icicle: None|None = None, + image: None|None = None, + indicator: None|None = None, + isosurface: None|None = None, + mesh3d: None|None = None, + ohlc: None|None = None, + parcats: None|None = None, + parcoords: None|None = None, + pie: None|None = None, + sankey: None|None = None, + scatter3d: None|None = None, + scattercarpet: None|None = None, + scattergeo: None|None = None, + scattergl: None|None = None, + scattermapbox: None|None = None, + scattermap: None|None = None, + scatterpolargl: None|None = None, + scatterpolar: None|None = None, + scatter: None|None = None, + scattersmith: None|None = None, + scatterternary: None|None = None, + splom: None|None = None, + streamtube: None|None = None, + sunburst: None|None = None, + surface: None|None = None, + table: None|None = None, + treemap: None|None = None, + violin: None|None = None, + volume: None|None = None, + waterfall: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/ternary/_aaxis.py b/plotly/graph_objs/layout/ternary/_aaxis.py index f6696ca26c..cfd4d3c07f 100644 --- a/plotly/graph_objs/layout/ternary/_aaxis.py +++ b/plotly/graph_objs/layout/ternary/_aaxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -843,7 +846,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -884,7 +887,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1188,47 +1191,47 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dtick=None, - exponentformat=None, - gridcolor=None, - griddash=None, - gridwidth=None, - hoverformat=None, - labelalias=None, - layer=None, - linecolor=None, - linewidth=None, - min=None, - minexponent=None, - nticks=None, - separatethousands=None, - showexponent=None, - showgrid=None, - showline=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - uirevision=None, + color: str|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + gridcolor: str|None = None, + griddash: str|None = None, + gridwidth: int|float|None = None, + hoverformat: str|None = None, + labelalias: Any|None = None, + layer: Any|None = None, + linecolor: str|None = None, + linewidth: int|float|None = None, + min: int|float|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showgrid: bool|None = None, + showline: bool|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + uirevision: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/ternary/_baxis.py b/plotly/graph_objs/layout/ternary/_baxis.py index ce12c0bf79..a79f89ead9 100644 --- a/plotly/graph_objs/layout/ternary/_baxis.py +++ b/plotly/graph_objs/layout/ternary/_baxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -843,7 +846,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -884,7 +887,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1188,47 +1191,47 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dtick=None, - exponentformat=None, - gridcolor=None, - griddash=None, - gridwidth=None, - hoverformat=None, - labelalias=None, - layer=None, - linecolor=None, - linewidth=None, - min=None, - minexponent=None, - nticks=None, - separatethousands=None, - showexponent=None, - showgrid=None, - showline=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - uirevision=None, + color: str|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + gridcolor: str|None = None, + griddash: str|None = None, + gridwidth: int|float|None = None, + hoverformat: str|None = None, + labelalias: Any|None = None, + layer: Any|None = None, + linecolor: str|None = None, + linewidth: int|float|None = None, + min: int|float|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showgrid: bool|None = None, + showline: bool|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + uirevision: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/ternary/_caxis.py b/plotly/graph_objs/layout/ternary/_caxis.py index 7a85dedcb5..f07ec552f1 100644 --- a/plotly/graph_objs/layout/ternary/_caxis.py +++ b/plotly/graph_objs/layout/ternary/_caxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -843,7 +846,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -884,7 +887,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1188,47 +1191,47 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dtick=None, - exponentformat=None, - gridcolor=None, - griddash=None, - gridwidth=None, - hoverformat=None, - labelalias=None, - layer=None, - linecolor=None, - linewidth=None, - min=None, - minexponent=None, - nticks=None, - separatethousands=None, - showexponent=None, - showgrid=None, - showline=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - uirevision=None, + color: str|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + gridcolor: str|None = None, + griddash: str|None = None, + gridwidth: int|float|None = None, + hoverformat: str|None = None, + labelalias: Any|None = None, + layer: Any|None = None, + linecolor: str|None = None, + linewidth: int|float|None = None, + min: int|float|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showgrid: bool|None = None, + showline: bool|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + uirevision: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/ternary/_domain.py b/plotly/graph_objs/layout/ternary/_domain.py index 79ff9c067c..42e9c87256 100644 --- a/plotly/graph_objs/layout/ternary/_domain.py +++ b/plotly/graph_objs/layout/ternary/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/ternary/aaxis/_tickfont.py b/plotly/graph_objs/layout/ternary/aaxis/_tickfont.py index 053f1304a8..4c7ad12c96 100644 --- a/plotly/graph_objs/layout/ternary/aaxis/_tickfont.py +++ b/plotly/graph_objs/layout/ternary/aaxis/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/ternary/aaxis/_tickformatstop.py b/plotly/graph_objs/layout/ternary/aaxis/_tickformatstop.py index a4c395bf91..c9f556a98e 100644 --- a/plotly/graph_objs/layout/ternary/aaxis/_tickformatstop.py +++ b/plotly/graph_objs/layout/ternary/aaxis/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/ternary/aaxis/_title.py b/plotly/graph_objs/layout/ternary/aaxis/_title.py index a0a661c981..199cf6f37f 100644 --- a/plotly/graph_objs/layout/ternary/aaxis/_title.py +++ b/plotly/graph_objs/layout/ternary/aaxis/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/ternary/aaxis/title/_font.py b/plotly/graph_objs/layout/ternary/aaxis/title/_font.py index 495223b665..4584fc25e8 100644 --- a/plotly/graph_objs/layout/ternary/aaxis/title/_font.py +++ b/plotly/graph_objs/layout/ternary/aaxis/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/ternary/baxis/_tickfont.py b/plotly/graph_objs/layout/ternary/baxis/_tickfont.py index 5e227764d8..270b47899b 100644 --- a/plotly/graph_objs/layout/ternary/baxis/_tickfont.py +++ b/plotly/graph_objs/layout/ternary/baxis/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/ternary/baxis/_tickformatstop.py b/plotly/graph_objs/layout/ternary/baxis/_tickformatstop.py index b2131f48b3..cc6ea76caf 100644 --- a/plotly/graph_objs/layout/ternary/baxis/_tickformatstop.py +++ b/plotly/graph_objs/layout/ternary/baxis/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/ternary/baxis/_title.py b/plotly/graph_objs/layout/ternary/baxis/_title.py index 40643f9905..b1bd32d239 100644 --- a/plotly/graph_objs/layout/ternary/baxis/_title.py +++ b/plotly/graph_objs/layout/ternary/baxis/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/ternary/baxis/title/_font.py b/plotly/graph_objs/layout/ternary/baxis/title/_font.py index ea66f1c16e..2211e74a97 100644 --- a/plotly/graph_objs/layout/ternary/baxis/title/_font.py +++ b/plotly/graph_objs/layout/ternary/baxis/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/ternary/caxis/_tickfont.py b/plotly/graph_objs/layout/ternary/caxis/_tickfont.py index e109e2d5f3..eb29964b60 100644 --- a/plotly/graph_objs/layout/ternary/caxis/_tickfont.py +++ b/plotly/graph_objs/layout/ternary/caxis/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/ternary/caxis/_tickformatstop.py b/plotly/graph_objs/layout/ternary/caxis/_tickformatstop.py index 45ec4c77c1..185304daa6 100644 --- a/plotly/graph_objs/layout/ternary/caxis/_tickformatstop.py +++ b/plotly/graph_objs/layout/ternary/caxis/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/ternary/caxis/_title.py b/plotly/graph_objs/layout/ternary/caxis/_title.py index 535b81f770..fabfa1286e 100644 --- a/plotly/graph_objs/layout/ternary/caxis/_title.py +++ b/plotly/graph_objs/layout/ternary/caxis/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/ternary/caxis/title/_font.py b/plotly/graph_objs/layout/ternary/caxis/title/_font.py index f84b3751d3..68619b2d0c 100644 --- a/plotly/graph_objs/layout/ternary/caxis/title/_font.py +++ b/plotly/graph_objs/layout/ternary/caxis/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/title/_font.py b/plotly/graph_objs/layout/title/_font.py index 5f4c2c4ca4..c3850b9fe4 100644 --- a/plotly/graph_objs/layout/title/_font.py +++ b/plotly/graph_objs/layout/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/title/_pad.py b/plotly/graph_objs/layout/title/_pad.py index 027868f3a0..a5750f240a 100644 --- a/plotly/graph_objs/layout/title/_pad.py +++ b/plotly/graph_objs/layout/title/_pad.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -115,10 +118,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - b=None, - l=None, - r=None, - t=None, + b: int|float|None = None, + l: int|float|None = None, + r: int|float|None = None, + t: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/title/_subtitle.py b/plotly/graph_objs/layout/title/_subtitle.py index ee14a583c9..5e9a7ca35a 100644 --- a/plotly/graph_objs/layout/title/_subtitle.py +++ b/plotly/graph_objs/layout/title/_subtitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/title/subtitle/_font.py b/plotly/graph_objs/layout/title/subtitle/_font.py index fcc382b432..a84f03223d 100644 --- a/plotly/graph_objs/layout/title/subtitle/_font.py +++ b/plotly/graph_objs/layout/title/subtitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/updatemenu/_button.py b/plotly/graph_objs/layout/updatemenu/_button.py index 67ea1b8778..685315bffa 100644 --- a/plotly/graph_objs/layout/updatemenu/_button.py +++ b/plotly/graph_objs/layout/updatemenu/_button.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -265,14 +268,14 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - args=None, - args2=None, - execute=None, - label=None, - method=None, - name=None, - templateitemname=None, - visible=None, + args: list|None = None, + args2: list|None = None, + execute: bool|None = None, + label: str|None = None, + method: Any|None = None, + name: str|None = None, + templateitemname: str|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/updatemenu/_font.py b/plotly/graph_objs/layout/updatemenu/_font.py index f828598948..dcf33e21f9 100644 --- a/plotly/graph_objs/layout/updatemenu/_font.py +++ b/plotly/graph_objs/layout/updatemenu/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/updatemenu/_pad.py b/plotly/graph_objs/layout/updatemenu/_pad.py index bbb91772e8..604e9dc032 100644 --- a/plotly/graph_objs/layout/updatemenu/_pad.py +++ b/plotly/graph_objs/layout/updatemenu/_pad.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -115,10 +118,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - b=None, - l=None, - r=None, - t=None, + b: int|float|None = None, + l: int|float|None = None, + r: int|float|None = None, + t: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/xaxis/_autorangeoptions.py b/plotly/graph_objs/layout/xaxis/_autorangeoptions.py index 490b07747e..a7ddaabf4d 100644 --- a/plotly/graph_objs/layout/xaxis/_autorangeoptions.py +++ b/plotly/graph_objs/layout/xaxis/_autorangeoptions.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -63,7 +66,7 @@ def include(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['include'] @@ -154,12 +157,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - clipmax=None, - clipmin=None, - include=None, - includesrc=None, - maxallowed=None, - minallowed=None, + clipmax: Any|None = None, + clipmin: Any|None = None, + include: Any|None = None, + includesrc: str|None = None, + maxallowed: Any|None = None, + minallowed: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/xaxis/_minor.py b/plotly/graph_objs/layout/xaxis/_minor.py index de0e9f82fa..97d0db0746 100644 --- a/plotly/graph_objs/layout/xaxis/_minor.py +++ b/plotly/graph_objs/layout/xaxis/_minor.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -299,7 +302,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -434,20 +437,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtick=None, - gridcolor=None, - griddash=None, - gridwidth=None, - nticks=None, - showgrid=None, - tick0=None, - tickcolor=None, - ticklen=None, - tickmode=None, - ticks=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, + dtick: Any|None = None, + gridcolor: str|None = None, + griddash: str|None = None, + gridwidth: int|float|None = None, + nticks: int|None = None, + showgrid: bool|None = None, + tick0: Any|None = None, + tickcolor: str|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + ticks: Any|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/xaxis/_rangebreak.py b/plotly/graph_objs/layout/xaxis/_rangebreak.py index f81ed00ae4..4d962d187e 100644 --- a/plotly/graph_objs/layout/xaxis/_rangebreak.py +++ b/plotly/graph_objs/layout/xaxis/_rangebreak.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -239,13 +242,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bounds=None, - dvalue=None, - enabled=None, - name=None, - pattern=None, - templateitemname=None, - values=None, + bounds: list|None = None, + dvalue: int|float|None = None, + enabled: bool|None = None, + name: str|None = None, + pattern: Any|None = None, + templateitemname: str|None = None, + values: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/xaxis/_rangeselector.py b/plotly/graph_objs/layout/xaxis/_rangeselector.py index 99756628db..1e969790c5 100644 --- a/plotly/graph_objs/layout/xaxis/_rangeselector.py +++ b/plotly/graph_objs/layout/xaxis/_rangeselector.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -336,18 +339,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - activecolor=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - buttons=None, - buttondefaults=None, - font=None, - visible=None, - x=None, - xanchor=None, - y=None, - yanchor=None, + activecolor: str|None = None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + buttons: None|None = None, + buttondefaults: None|None = None, + font: None|None = None, + visible: bool|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/xaxis/_rangeslider.py b/plotly/graph_objs/layout/xaxis/_rangeslider.py index 5ec5fd7096..a10f598bd5 100644 --- a/plotly/graph_objs/layout/xaxis/_rangeslider.py +++ b/plotly/graph_objs/layout/xaxis/_rangeslider.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -234,14 +237,14 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autorange=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - range=None, - thickness=None, - visible=None, - yaxis=None, + autorange: bool|None = None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|None = None, + range: list|None = None, + thickness: int|float|None = None, + visible: bool|None = None, + yaxis: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/xaxis/_tickfont.py b/plotly/graph_objs/layout/xaxis/_tickfont.py index dca9db9068..da7f5d6317 100644 --- a/plotly/graph_objs/layout/xaxis/_tickfont.py +++ b/plotly/graph_objs/layout/xaxis/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/xaxis/_tickformatstop.py b/plotly/graph_objs/layout/xaxis/_tickformatstop.py index ae754825c5..70bf41b714 100644 --- a/plotly/graph_objs/layout/xaxis/_tickformatstop.py +++ b/plotly/graph_objs/layout/xaxis/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/xaxis/_title.py b/plotly/graph_objs/layout/xaxis/_title.py index 3f6be61b6c..fbda957e91 100644 --- a/plotly/graph_objs/layout/xaxis/_title.py +++ b/plotly/graph_objs/layout/xaxis/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -105,9 +108,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - standoff=None, - text=None, + font: None|None = None, + standoff: int|float|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/xaxis/rangeselector/_button.py b/plotly/graph_objs/layout/xaxis/rangeselector/_button.py index 2f30ba4cec..e94801cb8f 100644 --- a/plotly/graph_objs/layout/xaxis/rangeselector/_button.py +++ b/plotly/graph_objs/layout/xaxis/rangeselector/_button.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -229,13 +232,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - count=None, - label=None, - name=None, - step=None, - stepmode=None, - templateitemname=None, - visible=None, + count: int|float|None = None, + label: str|None = None, + name: str|None = None, + step: Any|None = None, + stepmode: Any|None = None, + templateitemname: str|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/xaxis/rangeselector/_font.py b/plotly/graph_objs/layout/xaxis/rangeselector/_font.py index b70737ce81..3031f6a15e 100644 --- a/plotly/graph_objs/layout/xaxis/rangeselector/_font.py +++ b/plotly/graph_objs/layout/xaxis/rangeselector/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/xaxis/rangeslider/_yaxis.py b/plotly/graph_objs/layout/xaxis/rangeslider/_yaxis.py index ae1d001957..5940e5bd15 100644 --- a/plotly/graph_objs/layout/xaxis/rangeslider/_yaxis.py +++ b/plotly/graph_objs/layout/xaxis/rangeslider/_yaxis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -77,8 +80,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - range=None, - rangemode=None, + range: list|None = None, + rangemode: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/xaxis/title/_font.py b/plotly/graph_objs/layout/xaxis/title/_font.py index 82eb55762d..a43bfdfca2 100644 --- a/plotly/graph_objs/layout/xaxis/title/_font.py +++ b/plotly/graph_objs/layout/xaxis/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/yaxis/_autorangeoptions.py b/plotly/graph_objs/layout/yaxis/_autorangeoptions.py index be3e669048..6997ab70b4 100644 --- a/plotly/graph_objs/layout/yaxis/_autorangeoptions.py +++ b/plotly/graph_objs/layout/yaxis/_autorangeoptions.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -63,7 +66,7 @@ def include(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['include'] @@ -154,12 +157,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - clipmax=None, - clipmin=None, - include=None, - includesrc=None, - maxallowed=None, - minallowed=None, + clipmax: Any|None = None, + clipmin: Any|None = None, + include: Any|None = None, + includesrc: str|None = None, + maxallowed: Any|None = None, + minallowed: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/yaxis/_minor.py b/plotly/graph_objs/layout/yaxis/_minor.py index 8e06dde7f6..101f29aeed 100644 --- a/plotly/graph_objs/layout/yaxis/_minor.py +++ b/plotly/graph_objs/layout/yaxis/_minor.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -299,7 +302,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -434,20 +437,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtick=None, - gridcolor=None, - griddash=None, - gridwidth=None, - nticks=None, - showgrid=None, - tick0=None, - tickcolor=None, - ticklen=None, - tickmode=None, - ticks=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, + dtick: Any|None = None, + gridcolor: str|None = None, + griddash: str|None = None, + gridwidth: int|float|None = None, + nticks: int|None = None, + showgrid: bool|None = None, + tick0: Any|None = None, + tickcolor: str|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + ticks: Any|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/yaxis/_rangebreak.py b/plotly/graph_objs/layout/yaxis/_rangebreak.py index 5b326d6b92..768458cc2c 100644 --- a/plotly/graph_objs/layout/yaxis/_rangebreak.py +++ b/plotly/graph_objs/layout/yaxis/_rangebreak.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -239,13 +242,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bounds=None, - dvalue=None, - enabled=None, - name=None, - pattern=None, - templateitemname=None, - values=None, + bounds: list|None = None, + dvalue: int|float|None = None, + enabled: bool|None = None, + name: str|None = None, + pattern: Any|None = None, + templateitemname: str|None = None, + values: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/yaxis/_tickfont.py b/plotly/graph_objs/layout/yaxis/_tickfont.py index 3b5bd043c3..480760ca67 100644 --- a/plotly/graph_objs/layout/yaxis/_tickfont.py +++ b/plotly/graph_objs/layout/yaxis/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/yaxis/_tickformatstop.py b/plotly/graph_objs/layout/yaxis/_tickformatstop.py index 0179bb1d70..54df316700 100644 --- a/plotly/graph_objs/layout/yaxis/_tickformatstop.py +++ b/plotly/graph_objs/layout/yaxis/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/yaxis/_title.py b/plotly/graph_objs/layout/yaxis/_title.py index 709a010d4d..825c0fad82 100644 --- a/plotly/graph_objs/layout/yaxis/_title.py +++ b/plotly/graph_objs/layout/yaxis/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -105,9 +108,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - standoff=None, - text=None, + font: None|None = None, + standoff: int|float|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/layout/yaxis/title/_font.py b/plotly/graph_objs/layout/yaxis/title/_font.py index 451185782d..f4786ef155 100644 --- a/plotly/graph_objs/layout/yaxis/title/_font.py +++ b/plotly/graph_objs/layout/yaxis/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseLayoutHierarchyType as _BaseLayoutHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/mesh3d/_colorbar.py b/plotly/graph_objs/mesh3d/_colorbar.py index 00042304ea..fe06bcec24 100644 --- a/plotly/graph_objs/mesh3d/_colorbar.py +++ b/plotly/graph_objs/mesh3d/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/mesh3d/_contour.py b/plotly/graph_objs/mesh3d/_contour.py index 0ebe517aae..88775c09df 100644 --- a/plotly/graph_objs/mesh3d/_contour.py +++ b/plotly/graph_objs/mesh3d/_contour.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - show=None, - width=None, + color: str|None = None, + show: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/mesh3d/_hoverlabel.py b/plotly/graph_objs/mesh3d/_hoverlabel.py index d531426710..e6ad85c96b 100644 --- a/plotly/graph_objs/mesh3d/_hoverlabel.py +++ b/plotly/graph_objs/mesh3d/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/mesh3d/_legendgrouptitle.py b/plotly/graph_objs/mesh3d/_legendgrouptitle.py index 0582a17fc6..be3b1f026e 100644 --- a/plotly/graph_objs/mesh3d/_legendgrouptitle.py +++ b/plotly/graph_objs/mesh3d/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/mesh3d/_lighting.py b/plotly/graph_objs/mesh3d/_lighting.py index 19a5503789..71f553807a 100644 --- a/plotly/graph_objs/mesh3d/_lighting.py +++ b/plotly/graph_objs/mesh3d/_lighting.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -191,13 +194,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - ambient=None, - diffuse=None, - facenormalsepsilon=None, - fresnel=None, - roughness=None, - specular=None, - vertexnormalsepsilon=None, + ambient: int|float|None = None, + diffuse: int|float|None = None, + facenormalsepsilon: int|float|None = None, + fresnel: int|float|None = None, + roughness: int|float|None = None, + specular: int|float|None = None, + vertexnormalsepsilon: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/mesh3d/_lightposition.py b/plotly/graph_objs/mesh3d/_lightposition.py index 02031b0ca2..ff8ccfcd9d 100644 --- a/plotly/graph_objs/mesh3d/_lightposition.py +++ b/plotly/graph_objs/mesh3d/_lightposition.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -89,9 +92,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float|None = None, + y: int|float|None = None, + z: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/mesh3d/_stream.py b/plotly/graph_objs/mesh3d/_stream.py index 14ea21d7be..1a24f33cc4 100644 --- a/plotly/graph_objs/mesh3d/_stream.py +++ b/plotly/graph_objs/mesh3d/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/mesh3d/colorbar/_tickfont.py b/plotly/graph_objs/mesh3d/colorbar/_tickfont.py index fe6424c1ed..4c9557a456 100644 --- a/plotly/graph_objs/mesh3d/colorbar/_tickfont.py +++ b/plotly/graph_objs/mesh3d/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/mesh3d/colorbar/_tickformatstop.py b/plotly/graph_objs/mesh3d/colorbar/_tickformatstop.py index ad58711411..242b6c3e43 100644 --- a/plotly/graph_objs/mesh3d/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/mesh3d/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/mesh3d/colorbar/_title.py b/plotly/graph_objs/mesh3d/colorbar/_title.py index 6e5891d217..2c4302e8c0 100644 --- a/plotly/graph_objs/mesh3d/colorbar/_title.py +++ b/plotly/graph_objs/mesh3d/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/mesh3d/colorbar/title/_font.py b/plotly/graph_objs/mesh3d/colorbar/title/_font.py index bcd5dba9c7..609beac80f 100644 --- a/plotly/graph_objs/mesh3d/colorbar/title/_font.py +++ b/plotly/graph_objs/mesh3d/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/mesh3d/hoverlabel/_font.py b/plotly/graph_objs/mesh3d/hoverlabel/_font.py index 3adcc8926b..4afc0419b5 100644 --- a/plotly/graph_objs/mesh3d/hoverlabel/_font.py +++ b/plotly/graph_objs/mesh3d/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/mesh3d/legendgrouptitle/_font.py b/plotly/graph_objs/mesh3d/legendgrouptitle/_font.py index c212a89e21..3259924b90 100644 --- a/plotly/graph_objs/mesh3d/legendgrouptitle/_font.py +++ b/plotly/graph_objs/mesh3d/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/ohlc/_decreasing.py b/plotly/graph_objs/ohlc/_decreasing.py index fd56fc4455..ea1214ba42 100644 --- a/plotly/graph_objs/ohlc/_decreasing.py +++ b/plotly/graph_objs/ohlc/_decreasing.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - line=None, + line: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/ohlc/_hoverlabel.py b/plotly/graph_objs/ohlc/_hoverlabel.py index 4dd37a7023..b8a47597e0 100644 --- a/plotly/graph_objs/ohlc/_hoverlabel.py +++ b/plotly/graph_objs/ohlc/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -282,16 +285,16 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, - split=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, + split: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/ohlc/_increasing.py b/plotly/graph_objs/ohlc/_increasing.py index d357a2e686..7990409138 100644 --- a/plotly/graph_objs/ohlc/_increasing.py +++ b/plotly/graph_objs/ohlc/_increasing.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - line=None, + line: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/ohlc/_legendgrouptitle.py b/plotly/graph_objs/ohlc/_legendgrouptitle.py index bf582c1f57..b6292f8bb6 100644 --- a/plotly/graph_objs/ohlc/_legendgrouptitle.py +++ b/plotly/graph_objs/ohlc/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/ohlc/_line.py b/plotly/graph_objs/ohlc/_line.py index 01d112e011..6e48ccdfea 100644 --- a/plotly/graph_objs/ohlc/_line.py +++ b/plotly/graph_objs/ohlc/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -81,8 +84,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dash=None, - width=None, + dash: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/ohlc/_stream.py b/plotly/graph_objs/ohlc/_stream.py index 7f4792011a..d6e0c4ade8 100644 --- a/plotly/graph_objs/ohlc/_stream.py +++ b/plotly/graph_objs/ohlc/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/ohlc/decreasing/_line.py b/plotly/graph_objs/ohlc/decreasing/_line.py index f753c4689f..cea34d534b 100644 --- a/plotly/graph_objs/ohlc/decreasing/_line.py +++ b/plotly/graph_objs/ohlc/decreasing/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -99,9 +102,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str|None = None, + dash: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/ohlc/hoverlabel/_font.py b/plotly/graph_objs/ohlc/hoverlabel/_font.py index 15782ab689..fe0965092d 100644 --- a/plotly/graph_objs/ohlc/hoverlabel/_font.py +++ b/plotly/graph_objs/ohlc/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/ohlc/increasing/_line.py b/plotly/graph_objs/ohlc/increasing/_line.py index 380e662aba..dae8d93455 100644 --- a/plotly/graph_objs/ohlc/increasing/_line.py +++ b/plotly/graph_objs/ohlc/increasing/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -99,9 +102,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str|None = None, + dash: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/ohlc/legendgrouptitle/_font.py b/plotly/graph_objs/ohlc/legendgrouptitle/_font.py index 60abd06f95..0bfc3e2ab0 100644 --- a/plotly/graph_objs/ohlc/legendgrouptitle/_font.py +++ b/plotly/graph_objs/ohlc/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcats/_dimension.py b/plotly/graph_objs/parcats/_dimension.py index 6d16f32630..a4e26a9324 100644 --- a/plotly/graph_objs/parcats/_dimension.py +++ b/plotly/graph_objs/parcats/_dimension.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -26,7 +29,7 @@ def categoryarray(self): Returns ------- - numpy.ndarray + NDArray """ return self['categoryarray'] @@ -144,7 +147,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -187,7 +190,7 @@ def values(self): Returns ------- - numpy.ndarray + NDArray """ return self['values'] @@ -288,16 +291,16 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - categoryarray=None, - categoryarraysrc=None, - categoryorder=None, - displayindex=None, - label=None, - ticktext=None, - ticktextsrc=None, - values=None, - valuessrc=None, - visible=None, + categoryarray: NDArray|None = None, + categoryarraysrc: str|None = None, + categoryorder: Any|None = None, + displayindex: int|None = None, + label: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcats/_domain.py b/plotly/graph_objs/parcats/_domain.py index f10c867b03..e2ec2d8fb9 100644 --- a/plotly/graph_objs/parcats/_domain.py +++ b/plotly/graph_objs/parcats/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcats/_labelfont.py b/plotly/graph_objs/parcats/_labelfont.py index 6877db9764..ac34e916f1 100644 --- a/plotly/graph_objs/parcats/_labelfont.py +++ b/plotly/graph_objs/parcats/_labelfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcats/_legendgrouptitle.py b/plotly/graph_objs/parcats/_legendgrouptitle.py index 83178584eb..aa69e75246 100644 --- a/plotly/graph_objs/parcats/_legendgrouptitle.py +++ b/plotly/graph_objs/parcats/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcats/_line.py b/plotly/graph_objs/parcats/_line.py index dc00dd118f..98ae937f82 100644 --- a/plotly/graph_objs/parcats/_line.py +++ b/plotly/graph_objs/parcats/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -154,7 +157,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -517,20 +520,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - hovertemplate=None, - reversescale=None, - shape=None, - showscale=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + hovertemplate: str|None = None, + reversescale: bool|None = None, + shape: Any|None = None, + showscale: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcats/_stream.py b/plotly/graph_objs/parcats/_stream.py index 1a3fa79b56..7c7b2a1954 100644 --- a/plotly/graph_objs/parcats/_stream.py +++ b/plotly/graph_objs/parcats/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcats/_tickfont.py b/plotly/graph_objs/parcats/_tickfont.py index 69056824f2..a0a479b51e 100644 --- a/plotly/graph_objs/parcats/_tickfont.py +++ b/plotly/graph_objs/parcats/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcats/legendgrouptitle/_font.py b/plotly/graph_objs/parcats/legendgrouptitle/_font.py index 10b16b7289..96a411385a 100644 --- a/plotly/graph_objs/parcats/legendgrouptitle/_font.py +++ b/plotly/graph_objs/parcats/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcats/line/_colorbar.py b/plotly/graph_objs/parcats/line/_colorbar.py index 856555f8ee..7b179d2566 100644 --- a/plotly/graph_objs/parcats/line/_colorbar.py +++ b/plotly/graph_objs/parcats/line/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcats/line/colorbar/_tickfont.py b/plotly/graph_objs/parcats/line/colorbar/_tickfont.py index 38acc2d120..c020a6ba89 100644 --- a/plotly/graph_objs/parcats/line/colorbar/_tickfont.py +++ b/plotly/graph_objs/parcats/line/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcats/line/colorbar/_tickformatstop.py b/plotly/graph_objs/parcats/line/colorbar/_tickformatstop.py index 363fbca352..10a6c96f77 100644 --- a/plotly/graph_objs/parcats/line/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/parcats/line/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcats/line/colorbar/_title.py b/plotly/graph_objs/parcats/line/colorbar/_title.py index 939da12388..efd63a491c 100644 --- a/plotly/graph_objs/parcats/line/colorbar/_title.py +++ b/plotly/graph_objs/parcats/line/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcats/line/colorbar/title/_font.py b/plotly/graph_objs/parcats/line/colorbar/title/_font.py index d160cae084..198a9dbc47 100644 --- a/plotly/graph_objs/parcats/line/colorbar/title/_font.py +++ b/plotly/graph_objs/parcats/line/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcoords/_dimension.py b/plotly/graph_objs/parcoords/_dimension.py index 2158879b35..9e59aecd0f 100644 --- a/plotly/graph_objs/parcoords/_dimension.py +++ b/plotly/graph_objs/parcoords/_dimension.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -208,7 +211,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -248,7 +251,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -291,7 +294,7 @@ def values(self): Returns ------- - numpy.ndarray + NDArray """ return self['values'] @@ -419,20 +422,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - constraintrange=None, - label=None, - multiselect=None, - name=None, - range=None, - templateitemname=None, - tickformat=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - values=None, - valuessrc=None, - visible=None, + constraintrange: list|None = None, + label: str|None = None, + multiselect: bool|None = None, + name: str|None = None, + range: list|None = None, + templateitemname: str|None = None, + tickformat: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcoords/_domain.py b/plotly/graph_objs/parcoords/_domain.py index fc0fc7c638..4cdd340fd2 100644 --- a/plotly/graph_objs/parcoords/_domain.py +++ b/plotly/graph_objs/parcoords/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcoords/_labelfont.py b/plotly/graph_objs/parcoords/_labelfont.py index 9e6602ae79..d261c04905 100644 --- a/plotly/graph_objs/parcoords/_labelfont.py +++ b/plotly/graph_objs/parcoords/_labelfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcoords/_legendgrouptitle.py b/plotly/graph_objs/parcoords/_legendgrouptitle.py index 502e452333..fa44b6a1f7 100644 --- a/plotly/graph_objs/parcoords/_legendgrouptitle.py +++ b/plotly/graph_objs/parcoords/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcoords/_line.py b/plotly/graph_objs/parcoords/_line.py index 74cd9b24a3..e2e96bae62 100644 --- a/plotly/graph_objs/parcoords/_line.py +++ b/plotly/graph_objs/parcoords/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -154,7 +157,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -413,18 +416,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - reversescale=None, - showscale=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcoords/_rangefont.py b/plotly/graph_objs/parcoords/_rangefont.py index aa190db1b8..bfbc1a9306 100644 --- a/plotly/graph_objs/parcoords/_rangefont.py +++ b/plotly/graph_objs/parcoords/_rangefont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcoords/_stream.py b/plotly/graph_objs/parcoords/_stream.py index 7c4a2f464f..c8726dae87 100644 --- a/plotly/graph_objs/parcoords/_stream.py +++ b/plotly/graph_objs/parcoords/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcoords/_tickfont.py b/plotly/graph_objs/parcoords/_tickfont.py index 99845156bf..fb2e57f3f5 100644 --- a/plotly/graph_objs/parcoords/_tickfont.py +++ b/plotly/graph_objs/parcoords/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcoords/_unselected.py b/plotly/graph_objs/parcoords/_unselected.py index 8aad887bb6..27a4e471f3 100644 --- a/plotly/graph_objs/parcoords/_unselected.py +++ b/plotly/graph_objs/parcoords/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - line=None, + line: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcoords/legendgrouptitle/_font.py b/plotly/graph_objs/parcoords/legendgrouptitle/_font.py index 585c55893a..ba0f4e7560 100644 --- a/plotly/graph_objs/parcoords/legendgrouptitle/_font.py +++ b/plotly/graph_objs/parcoords/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcoords/line/_colorbar.py b/plotly/graph_objs/parcoords/line/_colorbar.py index 28cce04b01..8472411014 100644 --- a/plotly/graph_objs/parcoords/line/_colorbar.py +++ b/plotly/graph_objs/parcoords/line/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcoords/line/colorbar/_tickfont.py b/plotly/graph_objs/parcoords/line/colorbar/_tickfont.py index 35781eee74..d8076b99da 100644 --- a/plotly/graph_objs/parcoords/line/colorbar/_tickfont.py +++ b/plotly/graph_objs/parcoords/line/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcoords/line/colorbar/_tickformatstop.py b/plotly/graph_objs/parcoords/line/colorbar/_tickformatstop.py index df48e9ebfb..86d654f3fd 100644 --- a/plotly/graph_objs/parcoords/line/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/parcoords/line/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcoords/line/colorbar/_title.py b/plotly/graph_objs/parcoords/line/colorbar/_title.py index 699de72e57..3abeb14b58 100644 --- a/plotly/graph_objs/parcoords/line/colorbar/_title.py +++ b/plotly/graph_objs/parcoords/line/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcoords/line/colorbar/title/_font.py b/plotly/graph_objs/parcoords/line/colorbar/title/_font.py index 41d11dbc6d..b7095e2048 100644 --- a/plotly/graph_objs/parcoords/line/colorbar/title/_font.py +++ b/plotly/graph_objs/parcoords/line/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/parcoords/unselected/_line.py b/plotly/graph_objs/parcoords/unselected/_line.py index 35afe87fb4..22f262134a 100644 --- a/plotly/graph_objs/parcoords/unselected/_line.py +++ b/plotly/graph_objs/parcoords/unselected/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -75,8 +78,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, + color: str|None = None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/pie/_domain.py b/plotly/graph_objs/pie/_domain.py index cafe539672..3515d39c45 100644 --- a/plotly/graph_objs/pie/_domain.py +++ b/plotly/graph_objs/pie/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -127,10 +130,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/pie/_hoverlabel.py b/plotly/graph_objs/pie/_hoverlabel.py index 575bce5a6f..c307340aec 100644 --- a/plotly/graph_objs/pie/_hoverlabel.py +++ b/plotly/graph_objs/pie/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/pie/_insidetextfont.py b/plotly/graph_objs/pie/_insidetextfont.py index 68871ccf2f..5eaaf37190 100644 --- a/plotly/graph_objs/pie/_insidetextfont.py +++ b/plotly/graph_objs/pie/_insidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/pie/_legendgrouptitle.py b/plotly/graph_objs/pie/_legendgrouptitle.py index f37f95590f..73c4112f8e 100644 --- a/plotly/graph_objs/pie/_legendgrouptitle.py +++ b/plotly/graph_objs/pie/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/pie/_marker.py b/plotly/graph_objs/pie/_marker.py index 2d16e6053b..12bd518bf2 100644 --- a/plotly/graph_objs/pie/_marker.py +++ b/plotly/graph_objs/pie/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -25,7 +28,7 @@ def colors(self): Returns ------- - numpy.ndarray + NDArray """ return self['colors'] @@ -117,10 +120,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - colors=None, - colorssrc=None, - line=None, - pattern=None, + colors: NDArray|None = None, + colorssrc: str|None = None, + line: None|None = None, + pattern: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/pie/_outsidetextfont.py b/plotly/graph_objs/pie/_outsidetextfont.py index aa5f29d5eb..74eb38ff96 100644 --- a/plotly/graph_objs/pie/_outsidetextfont.py +++ b/plotly/graph_objs/pie/_outsidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/pie/_stream.py b/plotly/graph_objs/pie/_stream.py index a90f9fb857..5662f0c194 100644 --- a/plotly/graph_objs/pie/_stream.py +++ b/plotly/graph_objs/pie/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/pie/_textfont.py b/plotly/graph_objs/pie/_textfont.py index 66ceb83f08..86c041c1b0 100644 --- a/plotly/graph_objs/pie/_textfont.py +++ b/plotly/graph_objs/pie/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/pie/_title.py b/plotly/graph_objs/pie/_title.py index 9463890fe5..5081566fc2 100644 --- a/plotly/graph_objs/pie/_title.py +++ b/plotly/graph_objs/pie/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -94,9 +97,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - position=None, - text=None, + font: None|None = None, + position: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/pie/hoverlabel/_font.py b/plotly/graph_objs/pie/hoverlabel/_font.py index c89fb39687..2f03b1356e 100644 --- a/plotly/graph_objs/pie/hoverlabel/_font.py +++ b/plotly/graph_objs/pie/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/pie/legendgrouptitle/_font.py b/plotly/graph_objs/pie/legendgrouptitle/_font.py index cc238be12d..135980e243 100644 --- a/plotly/graph_objs/pie/legendgrouptitle/_font.py +++ b/plotly/graph_objs/pie/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/pie/marker/_line.py b/plotly/graph_objs/pie/marker/_line.py index 12535499b6..640a827cd2 100644 --- a/plotly/graph_objs/pie/marker/_line.py +++ b/plotly/graph_objs/pie/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -29,7 +32,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -70,7 +73,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -117,10 +120,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str|None = None, + colorsrc: str|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/pie/marker/_pattern.py b/plotly/graph_objs/pie/marker/_pattern.py index 3a6eebe278..386e680554 100644 --- a/plotly/graph_objs/pie/marker/_pattern.py +++ b/plotly/graph_objs/pie/marker/_pattern.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -32,7 +35,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -80,7 +83,7 @@ def fgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['fgcolor'] @@ -166,7 +169,7 @@ def shape(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['shape'] @@ -208,7 +211,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -252,7 +255,7 @@ def solidity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['solidity'] @@ -334,18 +337,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bgcolorsrc=None, - fgcolor=None, - fgcolorsrc=None, - fgopacity=None, - fillmode=None, - shape=None, - shapesrc=None, - size=None, - sizesrc=None, - solidity=None, - soliditysrc=None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + fgcolor: str|None = None, + fgcolorsrc: str|None = None, + fgopacity: int|float|None = None, + fillmode: Any|None = None, + shape: Any|None = None, + shapesrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + solidity: int|float|None = None, + soliditysrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/pie/title/_font.py b/plotly/graph_objs/pie/title/_font.py index e7c6395099..e4ea73de71 100644 --- a/plotly/graph_objs/pie/title/_font.py +++ b/plotly/graph_objs/pie/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sankey/_domain.py b/plotly/graph_objs/sankey/_domain.py index f835735d1f..75b3dc0ad3 100644 --- a/plotly/graph_objs/sankey/_domain.py +++ b/plotly/graph_objs/sankey/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sankey/_hoverlabel.py b/plotly/graph_objs/sankey/_hoverlabel.py index a864629730..6979a2d263 100644 --- a/plotly/graph_objs/sankey/_hoverlabel.py +++ b/plotly/graph_objs/sankey/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sankey/_legendgrouptitle.py b/plotly/graph_objs/sankey/_legendgrouptitle.py index 89d2989eb9..e368c03837 100644 --- a/plotly/graph_objs/sankey/_legendgrouptitle.py +++ b/plotly/graph_objs/sankey/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sankey/_link.py b/plotly/graph_objs/sankey/_link.py index d742541092..04e741707c 100644 --- a/plotly/graph_objs/sankey/_link.py +++ b/plotly/graph_objs/sankey/_link.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -52,7 +55,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -139,7 +142,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -188,7 +191,7 @@ def hovercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovercolor'] @@ -300,7 +303,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -341,7 +344,7 @@ def label(self): Returns ------- - numpy.ndarray + NDArray """ return self['label'] @@ -403,7 +406,7 @@ def source(self): Returns ------- - numpy.ndarray + NDArray """ return self['source'] @@ -444,7 +447,7 @@ def target(self): Returns ------- - numpy.ndarray + NDArray """ return self['target'] @@ -484,7 +487,7 @@ def value(self): Returns ------- - numpy.ndarray + NDArray """ return self['value'] @@ -621,28 +624,28 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - arrowlen=None, - color=None, - colorscales=None, - colorscaledefaults=None, - colorsrc=None, - customdata=None, - customdatasrc=None, - hovercolor=None, - hovercolorsrc=None, - hoverinfo=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - label=None, - labelsrc=None, - line=None, - source=None, - sourcesrc=None, - target=None, - targetsrc=None, - value=None, - valuesrc=None, + arrowlen: int|float|None = None, + color: str|None = None, + colorscales: None|None = None, + colorscaledefaults: None|None = None, + colorsrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + hovercolor: str|None = None, + hovercolorsrc: str|None = None, + hoverinfo: Any|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + label: NDArray|None = None, + labelsrc: str|None = None, + line: None|None = None, + source: NDArray|None = None, + sourcesrc: str|None = None, + target: NDArray|None = None, + targetsrc: str|None = None, + value: NDArray|None = None, + valuesrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sankey/_node.py b/plotly/graph_objs/sankey/_node.py index 9a2a2b2c33..c5cf14261c 100644 --- a/plotly/graph_objs/sankey/_node.py +++ b/plotly/graph_objs/sankey/_node.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -56,7 +59,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -96,7 +99,7 @@ def customdata(self): Returns ------- - numpy.ndarray + NDArray """ return self['customdata'] @@ -233,7 +236,7 @@ def hovertemplate(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['hovertemplate'] @@ -274,7 +277,7 @@ def label(self): Returns ------- - numpy.ndarray + NDArray """ return self['label'] @@ -375,7 +378,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -415,7 +418,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -537,25 +540,25 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - color=None, - colorsrc=None, - customdata=None, - customdatasrc=None, - groups=None, - hoverinfo=None, - hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - label=None, - labelsrc=None, - line=None, - pad=None, - thickness=None, - x=None, - xsrc=None, - y=None, - ysrc=None, + align: Any|None = None, + color: str|None = None, + colorsrc: str|None = None, + customdata: NDArray|None = None, + customdatasrc: str|None = None, + groups: list|None = None, + hoverinfo: Any|None = None, + hoverlabel: None|None = None, + hovertemplate: str|None = None, + hovertemplatesrc: str|None = None, + label: NDArray|None = None, + labelsrc: str|None = None, + line: None|None = None, + pad: int|float|None = None, + thickness: int|float|None = None, + x: NDArray|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + ysrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sankey/_stream.py b/plotly/graph_objs/sankey/_stream.py index 4cdf95116b..821e441429 100644 --- a/plotly/graph_objs/sankey/_stream.py +++ b/plotly/graph_objs/sankey/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sankey/_textfont.py b/plotly/graph_objs/sankey/_textfont.py index acbf9d9079..0c511860a4 100644 --- a/plotly/graph_objs/sankey/_textfont.py +++ b/plotly/graph_objs/sankey/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sankey/hoverlabel/_font.py b/plotly/graph_objs/sankey/hoverlabel/_font.py index 9cfb63b4c6..8a2e5a79d9 100644 --- a/plotly/graph_objs/sankey/hoverlabel/_font.py +++ b/plotly/graph_objs/sankey/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sankey/legendgrouptitle/_font.py b/plotly/graph_objs/sankey/legendgrouptitle/_font.py index 1f74286e2e..ce7f73dcd9 100644 --- a/plotly/graph_objs/sankey/legendgrouptitle/_font.py +++ b/plotly/graph_objs/sankey/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sankey/link/_colorscale.py b/plotly/graph_objs/sankey/link/_colorscale.py index 0b4742603c..c31f5e3bb9 100644 --- a/plotly/graph_objs/sankey/link/_colorscale.py +++ b/plotly/graph_objs/sankey/link/_colorscale.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -228,12 +231,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - cmax=None, - cmin=None, - colorscale=None, - label=None, - name=None, - templateitemname=None, + cmax: int|float|None = None, + cmin: int|float|None = None, + colorscale: str|None = None, + label: str|None = None, + name: str|None = None, + templateitemname: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sankey/link/_hoverlabel.py b/plotly/graph_objs/sankey/link/_hoverlabel.py index f268ca1b86..96f4133422 100644 --- a/plotly/graph_objs/sankey/link/_hoverlabel.py +++ b/plotly/graph_objs/sankey/link/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sankey/link/_line.py b/plotly/graph_objs/sankey/link/_line.py index 11206445cc..5f6ea39839 100644 --- a/plotly/graph_objs/sankey/link/_line.py +++ b/plotly/graph_objs/sankey/link/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -29,7 +32,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -70,7 +73,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -117,10 +120,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str|None = None, + colorsrc: str|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sankey/link/hoverlabel/_font.py b/plotly/graph_objs/sankey/link/hoverlabel/_font.py index defb334ef8..d0e111e3cd 100644 --- a/plotly/graph_objs/sankey/link/hoverlabel/_font.py +++ b/plotly/graph_objs/sankey/link/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sankey/node/_hoverlabel.py b/plotly/graph_objs/sankey/node/_hoverlabel.py index f7068b54cd..45e49c6f16 100644 --- a/plotly/graph_objs/sankey/node/_hoverlabel.py +++ b/plotly/graph_objs/sankey/node/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sankey/node/_line.py b/plotly/graph_objs/sankey/node/_line.py index 9aa3b95644..b23b134b74 100644 --- a/plotly/graph_objs/sankey/node/_line.py +++ b/plotly/graph_objs/sankey/node/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -29,7 +32,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -70,7 +73,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -117,10 +120,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str|None = None, + colorsrc: str|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sankey/node/hoverlabel/_font.py b/plotly/graph_objs/sankey/node/hoverlabel/_font.py index c9a0766a94..1fec7be8cb 100644 --- a/plotly/graph_objs/sankey/node/hoverlabel/_font.py +++ b/plotly/graph_objs/sankey/node/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/_error_x.py b/plotly/graph_objs/scatter/_error_x.py index 900ce12d04..06470ff676 100644 --- a/plotly/graph_objs/scatter/_error_x.py +++ b/plotly/graph_objs/scatter/_error_x.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -25,7 +28,7 @@ def array(self): Returns ------- - numpy.ndarray + NDArray """ return self['array'] @@ -47,7 +50,7 @@ def arrayminus(self): Returns ------- - numpy.ndarray + NDArray """ return self['arrayminus'] @@ -394,21 +397,21 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - array=None, - arrayminus=None, - arrayminussrc=None, - arraysrc=None, - color=None, - copy_ystyle=None, - symmetric=None, - thickness=None, - traceref=None, - tracerefminus=None, - type=None, - value=None, - valueminus=None, - visible=None, - width=None, + array: NDArray|None = None, + arrayminus: NDArray|None = None, + arrayminussrc: str|None = None, + arraysrc: str|None = None, + color: str|None = None, + copy_ystyle: bool|None = None, + symmetric: bool|None = None, + thickness: int|float|None = None, + traceref: int|None = None, + tracerefminus: int|None = None, + type: Any|None = None, + value: int|float|None = None, + valueminus: int|float|None = None, + visible: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/_error_y.py b/plotly/graph_objs/scatter/_error_y.py index 2fc957e357..4e2089c46d 100644 --- a/plotly/graph_objs/scatter/_error_y.py +++ b/plotly/graph_objs/scatter/_error_y.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -25,7 +28,7 @@ def array(self): Returns ------- - numpy.ndarray + NDArray """ return self['array'] @@ -47,7 +50,7 @@ def arrayminus(self): Returns ------- - numpy.ndarray + NDArray """ return self['arrayminus'] @@ -374,20 +377,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - array=None, - arrayminus=None, - arrayminussrc=None, - arraysrc=None, - color=None, - symmetric=None, - thickness=None, - traceref=None, - tracerefminus=None, - type=None, - value=None, - valueminus=None, - visible=None, - width=None, + array: NDArray|None = None, + arrayminus: NDArray|None = None, + arrayminussrc: str|None = None, + arraysrc: str|None = None, + color: str|None = None, + symmetric: bool|None = None, + thickness: int|float|None = None, + traceref: int|None = None, + tracerefminus: int|None = None, + type: Any|None = None, + value: int|float|None = None, + valueminus: int|float|None = None, + visible: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/_fillgradient.py b/plotly/graph_objs/scatter/_fillgradient.py index af2aeba254..8d5c06cc88 100644 --- a/plotly/graph_objs/scatter/_fillgradient.py +++ b/plotly/graph_objs/scatter/_fillgradient.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -166,10 +169,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - colorscale=None, - start=None, - stop=None, - type=None, + colorscale: str|None = None, + start: int|float|None = None, + stop: int|float|None = None, + type: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/_fillpattern.py b/plotly/graph_objs/scatter/_fillpattern.py index 91c34c5436..5be5fdbf29 100644 --- a/plotly/graph_objs/scatter/_fillpattern.py +++ b/plotly/graph_objs/scatter/_fillpattern.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -32,7 +35,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -80,7 +83,7 @@ def fgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['fgcolor'] @@ -166,7 +169,7 @@ def shape(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['shape'] @@ -208,7 +211,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -252,7 +255,7 @@ def solidity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['solidity'] @@ -334,18 +337,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bgcolorsrc=None, - fgcolor=None, - fgcolorsrc=None, - fgopacity=None, - fillmode=None, - shape=None, - shapesrc=None, - size=None, - sizesrc=None, - solidity=None, - soliditysrc=None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + fgcolor: str|None = None, + fgcolorsrc: str|None = None, + fgopacity: int|float|None = None, + fillmode: Any|None = None, + shape: Any|None = None, + shapesrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + solidity: int|float|None = None, + soliditysrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/_hoverlabel.py b/plotly/graph_objs/scatter/_hoverlabel.py index 87e61af033..f681f3f453 100644 --- a/plotly/graph_objs/scatter/_hoverlabel.py +++ b/plotly/graph_objs/scatter/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/_legendgrouptitle.py b/plotly/graph_objs/scatter/_legendgrouptitle.py index 412bd6a3a3..ce662f9764 100644 --- a/plotly/graph_objs/scatter/_legendgrouptitle.py +++ b/plotly/graph_objs/scatter/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/_line.py b/plotly/graph_objs/scatter/_line.py index d8e17beadd..4fed197a2e 100644 --- a/plotly/graph_objs/scatter/_line.py +++ b/plotly/graph_objs/scatter/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def backoff(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['backoff'] @@ -233,14 +236,14 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - backoff=None, - backoffsrc=None, - color=None, - dash=None, - shape=None, - simplify=None, - smoothing=None, - width=None, + backoff: int|float|None = None, + backoffsrc: str|None = None, + color: str|None = None, + dash: str|None = None, + shape: Any|None = None, + simplify: bool|None = None, + smoothing: int|float|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/_marker.py b/plotly/graph_objs/scatter/_marker.py index 4c82c336b3..fa9587645e 100644 --- a/plotly/graph_objs/scatter/_marker.py +++ b/plotly/graph_objs/scatter/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -26,7 +29,7 @@ def angle(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['angle'] @@ -220,7 +223,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -426,7 +429,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -512,7 +515,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -623,7 +626,7 @@ def standoff(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['standoff'] @@ -756,7 +759,7 @@ def symbol(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['symbol'] @@ -927,35 +930,35 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - angle=None, - angleref=None, - anglesrc=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - gradient=None, - line=None, - maxdisplayed=None, - opacity=None, - opacitysrc=None, - reversescale=None, - showscale=None, - size=None, - sizemin=None, - sizemode=None, - sizeref=None, - sizesrc=None, - standoff=None, - standoffsrc=None, - symbol=None, - symbolsrc=None, + angle: int|float|None = None, + angleref: Any|None = None, + anglesrc: str|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + gradient: None|None = None, + line: None|None = None, + maxdisplayed: int|float|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, + size: int|float|None = None, + sizemin: int|float|None = None, + sizemode: Any|None = None, + sizeref: int|float|None = None, + sizesrc: str|None = None, + standoff: int|float|None = None, + standoffsrc: str|None = None, + symbol: Any|None = None, + symbolsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/_selected.py b/plotly/graph_objs/scatter/_selected.py index 01490ee6da..9c5037c2b4 100644 --- a/plotly/graph_objs/scatter/_selected.py +++ b/plotly/graph_objs/scatter/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/_stream.py b/plotly/graph_objs/scatter/_stream.py index ea36071825..a30c899afc 100644 --- a/plotly/graph_objs/scatter/_stream.py +++ b/plotly/graph_objs/scatter/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/_textfont.py b/plotly/graph_objs/scatter/_textfont.py index 42fa36cca0..2343172890 100644 --- a/plotly/graph_objs/scatter/_textfont.py +++ b/plotly/graph_objs/scatter/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/_unselected.py b/plotly/graph_objs/scatter/_unselected.py index 1d20008b8a..16db097f7e 100644 --- a/plotly/graph_objs/scatter/_unselected.py +++ b/plotly/graph_objs/scatter/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/hoverlabel/_font.py b/plotly/graph_objs/scatter/hoverlabel/_font.py index f9ff1e263d..9a7bc7a41b 100644 --- a/plotly/graph_objs/scatter/hoverlabel/_font.py +++ b/plotly/graph_objs/scatter/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/legendgrouptitle/_font.py b/plotly/graph_objs/scatter/legendgrouptitle/_font.py index 9dc0ca22f6..d1bacb65d6 100644 --- a/plotly/graph_objs/scatter/legendgrouptitle/_font.py +++ b/plotly/graph_objs/scatter/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/marker/_colorbar.py b/plotly/graph_objs/scatter/marker/_colorbar.py index d7b119ac64..51daf27a4e 100644 --- a/plotly/graph_objs/scatter/marker/_colorbar.py +++ b/plotly/graph_objs/scatter/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/marker/_gradient.py b/plotly/graph_objs/scatter/marker/_gradient.py index 338dea100c..fe1e90f8da 100644 --- a/plotly/graph_objs/scatter/marker/_gradient.py +++ b/plotly/graph_objs/scatter/marker/_gradient.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -30,7 +33,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def type(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['type'] @@ -120,10 +123,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - type=None, - typesrc=None, + color: str|None = None, + colorsrc: str|None = None, + type: Any|None = None, + typesrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/marker/_line.py b/plotly/graph_objs/scatter/marker/_line.py index 039bb0a836..393913b074 100644 --- a/plotly/graph_objs/scatter/marker/_line.py +++ b/plotly/graph_objs/scatter/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -156,7 +159,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -303,7 +306,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -417,18 +420,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorscale=None, - colorsrc=None, - reversescale=None, - width=None, - widthsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + reversescale: bool|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/marker/colorbar/_tickfont.py b/plotly/graph_objs/scatter/marker/colorbar/_tickfont.py index 5bc44db307..28052ffc0d 100644 --- a/plotly/graph_objs/scatter/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/scatter/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scatter/marker/colorbar/_tickformatstop.py index 2c56b52d2d..336a4fa193 100644 --- a/plotly/graph_objs/scatter/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/scatter/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/marker/colorbar/_title.py b/plotly/graph_objs/scatter/marker/colorbar/_title.py index 8ce1c7c01f..ebc0cede5e 100644 --- a/plotly/graph_objs/scatter/marker/colorbar/_title.py +++ b/plotly/graph_objs/scatter/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/marker/colorbar/title/_font.py b/plotly/graph_objs/scatter/marker/colorbar/title/_font.py index e2dd4752af..e105c8c1aa 100644 --- a/plotly/graph_objs/scatter/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/scatter/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/selected/_marker.py b/plotly/graph_objs/scatter/selected/_marker.py index 56d97d9277..b53b2c266a 100644 --- a/plotly/graph_objs/scatter/selected/_marker.py +++ b/plotly/graph_objs/scatter/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/selected/_textfont.py b/plotly/graph_objs/scatter/selected/_textfont.py index eba0163922..a9c98830b8 100644 --- a/plotly/graph_objs/scatter/selected/_textfont.py +++ b/plotly/graph_objs/scatter/selected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -46,7 +49,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/unselected/_marker.py b/plotly/graph_objs/scatter/unselected/_marker.py index 4e58631629..12b8b59854 100644 --- a/plotly/graph_objs/scatter/unselected/_marker.py +++ b/plotly/graph_objs/scatter/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter/unselected/_textfont.py b/plotly/graph_objs/scatter/unselected/_textfont.py index 58046827b1..0ab3cd5194 100644 --- a/plotly/graph_objs/scatter/unselected/_textfont.py +++ b/plotly/graph_objs/scatter/unselected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -48,7 +51,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/_error_x.py b/plotly/graph_objs/scatter3d/_error_x.py index d2f6754173..bed1af2e4a 100644 --- a/plotly/graph_objs/scatter3d/_error_x.py +++ b/plotly/graph_objs/scatter3d/_error_x.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -25,7 +28,7 @@ def array(self): Returns ------- - numpy.ndarray + NDArray """ return self['array'] @@ -47,7 +50,7 @@ def arrayminus(self): Returns ------- - numpy.ndarray + NDArray """ return self['arrayminus'] @@ -394,21 +397,21 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - array=None, - arrayminus=None, - arrayminussrc=None, - arraysrc=None, - color=None, - copy_zstyle=None, - symmetric=None, - thickness=None, - traceref=None, - tracerefminus=None, - type=None, - value=None, - valueminus=None, - visible=None, - width=None, + array: NDArray|None = None, + arrayminus: NDArray|None = None, + arrayminussrc: str|None = None, + arraysrc: str|None = None, + color: str|None = None, + copy_zstyle: bool|None = None, + symmetric: bool|None = None, + thickness: int|float|None = None, + traceref: int|None = None, + tracerefminus: int|None = None, + type: Any|None = None, + value: int|float|None = None, + valueminus: int|float|None = None, + visible: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/_error_y.py b/plotly/graph_objs/scatter3d/_error_y.py index 139951afdf..4b5471cf23 100644 --- a/plotly/graph_objs/scatter3d/_error_y.py +++ b/plotly/graph_objs/scatter3d/_error_y.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -25,7 +28,7 @@ def array(self): Returns ------- - numpy.ndarray + NDArray """ return self['array'] @@ -47,7 +50,7 @@ def arrayminus(self): Returns ------- - numpy.ndarray + NDArray """ return self['arrayminus'] @@ -394,21 +397,21 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - array=None, - arrayminus=None, - arrayminussrc=None, - arraysrc=None, - color=None, - copy_zstyle=None, - symmetric=None, - thickness=None, - traceref=None, - tracerefminus=None, - type=None, - value=None, - valueminus=None, - visible=None, - width=None, + array: NDArray|None = None, + arrayminus: NDArray|None = None, + arrayminussrc: str|None = None, + arraysrc: str|None = None, + color: str|None = None, + copy_zstyle: bool|None = None, + symmetric: bool|None = None, + thickness: int|float|None = None, + traceref: int|None = None, + tracerefminus: int|None = None, + type: Any|None = None, + value: int|float|None = None, + valueminus: int|float|None = None, + visible: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/_error_z.py b/plotly/graph_objs/scatter3d/_error_z.py index 6a436d14f4..546d6a4b13 100644 --- a/plotly/graph_objs/scatter3d/_error_z.py +++ b/plotly/graph_objs/scatter3d/_error_z.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -25,7 +28,7 @@ def array(self): Returns ------- - numpy.ndarray + NDArray """ return self['array'] @@ -47,7 +50,7 @@ def arrayminus(self): Returns ------- - numpy.ndarray + NDArray """ return self['arrayminus'] @@ -374,20 +377,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - array=None, - arrayminus=None, - arrayminussrc=None, - arraysrc=None, - color=None, - symmetric=None, - thickness=None, - traceref=None, - tracerefminus=None, - type=None, - value=None, - valueminus=None, - visible=None, - width=None, + array: NDArray|None = None, + arrayminus: NDArray|None = None, + arrayminussrc: str|None = None, + arraysrc: str|None = None, + color: str|None = None, + symmetric: bool|None = None, + thickness: int|float|None = None, + traceref: int|None = None, + tracerefminus: int|None = None, + type: Any|None = None, + value: int|float|None = None, + valueminus: int|float|None = None, + visible: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/_hoverlabel.py b/plotly/graph_objs/scatter3d/_hoverlabel.py index 69489f6e54..1b1755c95d 100644 --- a/plotly/graph_objs/scatter3d/_hoverlabel.py +++ b/plotly/graph_objs/scatter3d/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/_legendgrouptitle.py b/plotly/graph_objs/scatter3d/_legendgrouptitle.py index adb2d49f2c..9c13c83fbc 100644 --- a/plotly/graph_objs/scatter3d/_legendgrouptitle.py +++ b/plotly/graph_objs/scatter3d/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/_line.py b/plotly/graph_objs/scatter3d/_line.py index a116d48dfb..de0c9ba543 100644 --- a/plotly/graph_objs/scatter3d/_line.py +++ b/plotly/graph_objs/scatter3d/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -154,7 +157,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -459,20 +462,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - dash=None, - reversescale=None, - showscale=None, - width=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + dash: Any|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/_marker.py b/plotly/graph_objs/scatter3d/_marker.py index 1abfdc7533..e71babdc88 100644 --- a/plotly/graph_objs/scatter3d/_marker.py +++ b/plotly/graph_objs/scatter3d/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -155,7 +158,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -388,7 +391,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -498,7 +501,7 @@ def symbol(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['symbol'] @@ -642,27 +645,27 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - line=None, - opacity=None, - reversescale=None, - showscale=None, - size=None, - sizemin=None, - sizemode=None, - sizeref=None, - sizesrc=None, - symbol=None, - symbolsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + line: None|None = None, + opacity: int|float|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, + size: int|float|None = None, + sizemin: int|float|None = None, + sizemode: Any|None = None, + sizeref: int|float|None = None, + sizesrc: str|None = None, + symbol: Any|None = None, + symbolsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/_projection.py b/plotly/graph_objs/scatter3d/_projection.py index a6a4db4ff2..2f864444f9 100644 --- a/plotly/graph_objs/scatter3d/_projection.py +++ b/plotly/graph_objs/scatter3d/_projection.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -92,9 +95,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: None|None = None, + y: None|None = None, + z: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/_stream.py b/plotly/graph_objs/scatter3d/_stream.py index 98c5fe192b..45f2feb3c1 100644 --- a/plotly/graph_objs/scatter3d/_stream.py +++ b/plotly/graph_objs/scatter3d/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/_textfont.py b/plotly/graph_objs/scatter3d/_textfont.py index 11a9fa07b2..ba03c297f8 100644 --- a/plotly/graph_objs/scatter3d/_textfont.py +++ b/plotly/graph_objs/scatter3d/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -111,7 +114,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -154,7 +157,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -196,7 +199,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -239,7 +242,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -311,18 +314,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/hoverlabel/_font.py b/plotly/graph_objs/scatter3d/hoverlabel/_font.py index 7426d4911e..84e861033d 100644 --- a/plotly/graph_objs/scatter3d/hoverlabel/_font.py +++ b/plotly/graph_objs/scatter3d/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/legendgrouptitle/_font.py b/plotly/graph_objs/scatter3d/legendgrouptitle/_font.py index 49151f8414..f98ee420d3 100644 --- a/plotly/graph_objs/scatter3d/legendgrouptitle/_font.py +++ b/plotly/graph_objs/scatter3d/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/line/_colorbar.py b/plotly/graph_objs/scatter3d/line/_colorbar.py index 64100ac502..52624b157f 100644 --- a/plotly/graph_objs/scatter3d/line/_colorbar.py +++ b/plotly/graph_objs/scatter3d/line/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/line/colorbar/_tickfont.py b/plotly/graph_objs/scatter3d/line/colorbar/_tickfont.py index 6598949f64..2052c6fbe1 100644 --- a/plotly/graph_objs/scatter3d/line/colorbar/_tickfont.py +++ b/plotly/graph_objs/scatter3d/line/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/line/colorbar/_tickformatstop.py b/plotly/graph_objs/scatter3d/line/colorbar/_tickformatstop.py index 23d4bb670d..6c97c5c2e5 100644 --- a/plotly/graph_objs/scatter3d/line/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/scatter3d/line/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/line/colorbar/_title.py b/plotly/graph_objs/scatter3d/line/colorbar/_title.py index 50b625a2eb..a7dba08a4c 100644 --- a/plotly/graph_objs/scatter3d/line/colorbar/_title.py +++ b/plotly/graph_objs/scatter3d/line/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/line/colorbar/title/_font.py b/plotly/graph_objs/scatter3d/line/colorbar/title/_font.py index 0c2dafbf44..5da80fd0b5 100644 --- a/plotly/graph_objs/scatter3d/line/colorbar/title/_font.py +++ b/plotly/graph_objs/scatter3d/line/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/marker/_colorbar.py b/plotly/graph_objs/scatter3d/marker/_colorbar.py index c1b7624da2..ee5ffceced 100644 --- a/plotly/graph_objs/scatter3d/marker/_colorbar.py +++ b/plotly/graph_objs/scatter3d/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/marker/_line.py b/plotly/graph_objs/scatter3d/marker/_line.py index 81e0e94187..88cc77bbe5 100644 --- a/plotly/graph_objs/scatter3d/marker/_line.py +++ b/plotly/graph_objs/scatter3d/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -156,7 +159,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -393,17 +396,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorscale=None, - colorsrc=None, - reversescale=None, - width=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + reversescale: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/marker/colorbar/_tickfont.py b/plotly/graph_objs/scatter3d/marker/colorbar/_tickfont.py index bd5a6353c8..265f2266d6 100644 --- a/plotly/graph_objs/scatter3d/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/scatter3d/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scatter3d/marker/colorbar/_tickformatstop.py index 7b874e65ed..8fbc489e8e 100644 --- a/plotly/graph_objs/scatter3d/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/scatter3d/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/marker/colorbar/_title.py b/plotly/graph_objs/scatter3d/marker/colorbar/_title.py index 8591ba8a08..0232b44c52 100644 --- a/plotly/graph_objs/scatter3d/marker/colorbar/_title.py +++ b/plotly/graph_objs/scatter3d/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/marker/colorbar/title/_font.py b/plotly/graph_objs/scatter3d/marker/colorbar/title/_font.py index 8a13836534..41ba66d0db 100644 --- a/plotly/graph_objs/scatter3d/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/scatter3d/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/projection/_x.py b/plotly/graph_objs/scatter3d/projection/_x.py index 8318aa0594..0153e22722 100644 --- a/plotly/graph_objs/scatter3d/projection/_x.py +++ b/plotly/graph_objs/scatter3d/projection/_x.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -89,9 +92,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, - scale=None, - show=None, + opacity: int|float|None = None, + scale: int|float|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/projection/_y.py b/plotly/graph_objs/scatter3d/projection/_y.py index fbb2bc6532..6f88b90c6a 100644 --- a/plotly/graph_objs/scatter3d/projection/_y.py +++ b/plotly/graph_objs/scatter3d/projection/_y.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -89,9 +92,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, - scale=None, - show=None, + opacity: int|float|None = None, + scale: int|float|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatter3d/projection/_z.py b/plotly/graph_objs/scatter3d/projection/_z.py index 8b094c7b8e..ce3e273d7f 100644 --- a/plotly/graph_objs/scatter3d/projection/_z.py +++ b/plotly/graph_objs/scatter3d/projection/_z.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -89,9 +92,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, - scale=None, - show=None, + opacity: int|float|None = None, + scale: int|float|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/_hoverlabel.py b/plotly/graph_objs/scattercarpet/_hoverlabel.py index a34a0d8c64..f42e44c7f7 100644 --- a/plotly/graph_objs/scattercarpet/_hoverlabel.py +++ b/plotly/graph_objs/scattercarpet/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/_legendgrouptitle.py b/plotly/graph_objs/scattercarpet/_legendgrouptitle.py index 4b50c79d8c..31ceaf9df9 100644 --- a/plotly/graph_objs/scattercarpet/_legendgrouptitle.py +++ b/plotly/graph_objs/scattercarpet/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/_line.py b/plotly/graph_objs/scattercarpet/_line.py index 3d08bcc18f..04cbecdd0d 100644 --- a/plotly/graph_objs/scattercarpet/_line.py +++ b/plotly/graph_objs/scattercarpet/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def backoff(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['backoff'] @@ -205,13 +208,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - backoff=None, - backoffsrc=None, - color=None, - dash=None, - shape=None, - smoothing=None, - width=None, + backoff: int|float|None = None, + backoffsrc: str|None = None, + color: str|None = None, + dash: str|None = None, + shape: Any|None = None, + smoothing: int|float|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/_marker.py b/plotly/graph_objs/scattercarpet/_marker.py index 0d3d72734b..21dcdd045d 100644 --- a/plotly/graph_objs/scattercarpet/_marker.py +++ b/plotly/graph_objs/scattercarpet/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -26,7 +29,7 @@ def angle(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['angle'] @@ -220,7 +223,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -426,7 +429,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -512,7 +515,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -623,7 +626,7 @@ def standoff(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['standoff'] @@ -756,7 +759,7 @@ def symbol(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['symbol'] @@ -927,35 +930,35 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - angle=None, - angleref=None, - anglesrc=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - gradient=None, - line=None, - maxdisplayed=None, - opacity=None, - opacitysrc=None, - reversescale=None, - showscale=None, - size=None, - sizemin=None, - sizemode=None, - sizeref=None, - sizesrc=None, - standoff=None, - standoffsrc=None, - symbol=None, - symbolsrc=None, + angle: int|float|None = None, + angleref: Any|None = None, + anglesrc: str|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + gradient: None|None = None, + line: None|None = None, + maxdisplayed: int|float|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, + size: int|float|None = None, + sizemin: int|float|None = None, + sizemode: Any|None = None, + sizeref: int|float|None = None, + sizesrc: str|None = None, + standoff: int|float|None = None, + standoffsrc: str|None = None, + symbol: Any|None = None, + symbolsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/_selected.py b/plotly/graph_objs/scattercarpet/_selected.py index 0b3aa15dfb..49eaac6573 100644 --- a/plotly/graph_objs/scattercarpet/_selected.py +++ b/plotly/graph_objs/scattercarpet/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/_stream.py b/plotly/graph_objs/scattercarpet/_stream.py index 8e90ceb4aa..13e18c0e4e 100644 --- a/plotly/graph_objs/scattercarpet/_stream.py +++ b/plotly/graph_objs/scattercarpet/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/_textfont.py b/plotly/graph_objs/scattercarpet/_textfont.py index a43e3706b7..ec1394a465 100644 --- a/plotly/graph_objs/scattercarpet/_textfont.py +++ b/plotly/graph_objs/scattercarpet/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/_unselected.py b/plotly/graph_objs/scattercarpet/_unselected.py index 633efc7a2f..5b79796e49 100644 --- a/plotly/graph_objs/scattercarpet/_unselected.py +++ b/plotly/graph_objs/scattercarpet/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/hoverlabel/_font.py b/plotly/graph_objs/scattercarpet/hoverlabel/_font.py index 6ce608e6c3..f04473f368 100644 --- a/plotly/graph_objs/scattercarpet/hoverlabel/_font.py +++ b/plotly/graph_objs/scattercarpet/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/legendgrouptitle/_font.py b/plotly/graph_objs/scattercarpet/legendgrouptitle/_font.py index 90f1403cea..a877ef7291 100644 --- a/plotly/graph_objs/scattercarpet/legendgrouptitle/_font.py +++ b/plotly/graph_objs/scattercarpet/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/marker/_colorbar.py b/plotly/graph_objs/scattercarpet/marker/_colorbar.py index ded677903a..36c4e24128 100644 --- a/plotly/graph_objs/scattercarpet/marker/_colorbar.py +++ b/plotly/graph_objs/scattercarpet/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/marker/_gradient.py b/plotly/graph_objs/scattercarpet/marker/_gradient.py index c534277439..2b7ee81d18 100644 --- a/plotly/graph_objs/scattercarpet/marker/_gradient.py +++ b/plotly/graph_objs/scattercarpet/marker/_gradient.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -30,7 +33,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def type(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['type'] @@ -120,10 +123,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - type=None, - typesrc=None, + color: str|None = None, + colorsrc: str|None = None, + type: Any|None = None, + typesrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/marker/_line.py b/plotly/graph_objs/scattercarpet/marker/_line.py index ed98635e30..a01a0f0947 100644 --- a/plotly/graph_objs/scattercarpet/marker/_line.py +++ b/plotly/graph_objs/scattercarpet/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -156,7 +159,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -303,7 +306,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -417,18 +420,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorscale=None, - colorsrc=None, - reversescale=None, - width=None, - widthsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + reversescale: bool|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/marker/colorbar/_tickfont.py b/plotly/graph_objs/scattercarpet/marker/colorbar/_tickfont.py index 6526b036cf..9a663b78fd 100644 --- a/plotly/graph_objs/scattercarpet/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/scattercarpet/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scattercarpet/marker/colorbar/_tickformatstop.py index aafa6e6859..0d339de588 100644 --- a/plotly/graph_objs/scattercarpet/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/scattercarpet/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/marker/colorbar/_title.py b/plotly/graph_objs/scattercarpet/marker/colorbar/_title.py index 6c93a4d5db..4404113a33 100644 --- a/plotly/graph_objs/scattercarpet/marker/colorbar/_title.py +++ b/plotly/graph_objs/scattercarpet/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/marker/colorbar/title/_font.py b/plotly/graph_objs/scattercarpet/marker/colorbar/title/_font.py index 07a8d93b91..c47c5c7c1e 100644 --- a/plotly/graph_objs/scattercarpet/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/scattercarpet/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/selected/_marker.py b/plotly/graph_objs/scattercarpet/selected/_marker.py index 7ccaafd1c3..da44816b75 100644 --- a/plotly/graph_objs/scattercarpet/selected/_marker.py +++ b/plotly/graph_objs/scattercarpet/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/selected/_textfont.py b/plotly/graph_objs/scattercarpet/selected/_textfont.py index 385a873ae9..ec6f9ae91b 100644 --- a/plotly/graph_objs/scattercarpet/selected/_textfont.py +++ b/plotly/graph_objs/scattercarpet/selected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -46,7 +49,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/unselected/_marker.py b/plotly/graph_objs/scattercarpet/unselected/_marker.py index c36908cb4b..4474a9c8c1 100644 --- a/plotly/graph_objs/scattercarpet/unselected/_marker.py +++ b/plotly/graph_objs/scattercarpet/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattercarpet/unselected/_textfont.py b/plotly/graph_objs/scattercarpet/unselected/_textfont.py index 48b15dd097..4a0008f58a 100644 --- a/plotly/graph_objs/scattercarpet/unselected/_textfont.py +++ b/plotly/graph_objs/scattercarpet/unselected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -48,7 +51,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/_hoverlabel.py b/plotly/graph_objs/scattergeo/_hoverlabel.py index 1434b52326..161ed03c6d 100644 --- a/plotly/graph_objs/scattergeo/_hoverlabel.py +++ b/plotly/graph_objs/scattergeo/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/_legendgrouptitle.py b/plotly/graph_objs/scattergeo/_legendgrouptitle.py index 9c565e6d4d..c8bae2b63e 100644 --- a/plotly/graph_objs/scattergeo/_legendgrouptitle.py +++ b/plotly/graph_objs/scattergeo/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/_line.py b/plotly/graph_objs/scattergeo/_line.py index a16267abc1..9071f0ccad 100644 --- a/plotly/graph_objs/scattergeo/_line.py +++ b/plotly/graph_objs/scattergeo/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -99,9 +102,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str|None = None, + dash: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/_marker.py b/plotly/graph_objs/scattergeo/_marker.py index c929447497..2df6cf581e 100644 --- a/plotly/graph_objs/scattergeo/_marker.py +++ b/plotly/graph_objs/scattergeo/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -26,7 +29,7 @@ def angle(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['angle'] @@ -222,7 +225,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -407,7 +410,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -493,7 +496,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -604,7 +607,7 @@ def standoff(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['standoff'] @@ -737,7 +740,7 @@ def symbol(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['symbol'] @@ -906,34 +909,34 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - angle=None, - angleref=None, - anglesrc=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - gradient=None, - line=None, - opacity=None, - opacitysrc=None, - reversescale=None, - showscale=None, - size=None, - sizemin=None, - sizemode=None, - sizeref=None, - sizesrc=None, - standoff=None, - standoffsrc=None, - symbol=None, - symbolsrc=None, + angle: int|float|None = None, + angleref: Any|None = None, + anglesrc: str|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + gradient: None|None = None, + line: None|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, + size: int|float|None = None, + sizemin: int|float|None = None, + sizemode: Any|None = None, + sizeref: int|float|None = None, + sizesrc: str|None = None, + standoff: int|float|None = None, + standoffsrc: str|None = None, + symbol: Any|None = None, + symbolsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/_selected.py b/plotly/graph_objs/scattergeo/_selected.py index ab41d9e081..188a240e7f 100644 --- a/plotly/graph_objs/scattergeo/_selected.py +++ b/plotly/graph_objs/scattergeo/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/_stream.py b/plotly/graph_objs/scattergeo/_stream.py index ae892c9b1a..c2e1aa9328 100644 --- a/plotly/graph_objs/scattergeo/_stream.py +++ b/plotly/graph_objs/scattergeo/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/_textfont.py b/plotly/graph_objs/scattergeo/_textfont.py index 3e381f7b1e..a854fa7a1c 100644 --- a/plotly/graph_objs/scattergeo/_textfont.py +++ b/plotly/graph_objs/scattergeo/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/_unselected.py b/plotly/graph_objs/scattergeo/_unselected.py index 98cf8f573f..1cdf8ec410 100644 --- a/plotly/graph_objs/scattergeo/_unselected.py +++ b/plotly/graph_objs/scattergeo/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/hoverlabel/_font.py b/plotly/graph_objs/scattergeo/hoverlabel/_font.py index 707927f737..37216133c9 100644 --- a/plotly/graph_objs/scattergeo/hoverlabel/_font.py +++ b/plotly/graph_objs/scattergeo/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/legendgrouptitle/_font.py b/plotly/graph_objs/scattergeo/legendgrouptitle/_font.py index 5b49a7c278..b88c9bf78a 100644 --- a/plotly/graph_objs/scattergeo/legendgrouptitle/_font.py +++ b/plotly/graph_objs/scattergeo/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/marker/_colorbar.py b/plotly/graph_objs/scattergeo/marker/_colorbar.py index 4199815f81..9dcb6654dd 100644 --- a/plotly/graph_objs/scattergeo/marker/_colorbar.py +++ b/plotly/graph_objs/scattergeo/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/marker/_gradient.py b/plotly/graph_objs/scattergeo/marker/_gradient.py index 06281a7c18..c4106da2ff 100644 --- a/plotly/graph_objs/scattergeo/marker/_gradient.py +++ b/plotly/graph_objs/scattergeo/marker/_gradient.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -30,7 +33,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def type(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['type'] @@ -120,10 +123,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - type=None, - typesrc=None, + color: str|None = None, + colorsrc: str|None = None, + type: Any|None = None, + typesrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/marker/_line.py b/plotly/graph_objs/scattergeo/marker/_line.py index c4f7f6331b..7ab5dfe8ba 100644 --- a/plotly/graph_objs/scattergeo/marker/_line.py +++ b/plotly/graph_objs/scattergeo/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -156,7 +159,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -303,7 +306,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -417,18 +420,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorscale=None, - colorsrc=None, - reversescale=None, - width=None, - widthsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + reversescale: bool|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/marker/colorbar/_tickfont.py b/plotly/graph_objs/scattergeo/marker/colorbar/_tickfont.py index 011aaa0058..001ae56ddf 100644 --- a/plotly/graph_objs/scattergeo/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/scattergeo/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scattergeo/marker/colorbar/_tickformatstop.py index 563ec00d0e..244c8f5bc9 100644 --- a/plotly/graph_objs/scattergeo/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/scattergeo/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/marker/colorbar/_title.py b/plotly/graph_objs/scattergeo/marker/colorbar/_title.py index 1d5511237b..4aa09fbaeb 100644 --- a/plotly/graph_objs/scattergeo/marker/colorbar/_title.py +++ b/plotly/graph_objs/scattergeo/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/marker/colorbar/title/_font.py b/plotly/graph_objs/scattergeo/marker/colorbar/title/_font.py index 89f88c5a4d..fee1266c16 100644 --- a/plotly/graph_objs/scattergeo/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/scattergeo/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/selected/_marker.py b/plotly/graph_objs/scattergeo/selected/_marker.py index 2f217a3014..f92085a56b 100644 --- a/plotly/graph_objs/scattergeo/selected/_marker.py +++ b/plotly/graph_objs/scattergeo/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/selected/_textfont.py b/plotly/graph_objs/scattergeo/selected/_textfont.py index c707b22e58..b981a4828a 100644 --- a/plotly/graph_objs/scattergeo/selected/_textfont.py +++ b/plotly/graph_objs/scattergeo/selected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -46,7 +49,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/unselected/_marker.py b/plotly/graph_objs/scattergeo/unselected/_marker.py index a5bb49c004..1728931a24 100644 --- a/plotly/graph_objs/scattergeo/unselected/_marker.py +++ b/plotly/graph_objs/scattergeo/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergeo/unselected/_textfont.py b/plotly/graph_objs/scattergeo/unselected/_textfont.py index 44c8a78a90..b3891f8d1e 100644 --- a/plotly/graph_objs/scattergeo/unselected/_textfont.py +++ b/plotly/graph_objs/scattergeo/unselected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -48,7 +51,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/_error_x.py b/plotly/graph_objs/scattergl/_error_x.py index d6c30f0ea5..aa0b8de5ef 100644 --- a/plotly/graph_objs/scattergl/_error_x.py +++ b/plotly/graph_objs/scattergl/_error_x.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -25,7 +28,7 @@ def array(self): Returns ------- - numpy.ndarray + NDArray """ return self['array'] @@ -47,7 +50,7 @@ def arrayminus(self): Returns ------- - numpy.ndarray + NDArray """ return self['arrayminus'] @@ -394,21 +397,21 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - array=None, - arrayminus=None, - arrayminussrc=None, - arraysrc=None, - color=None, - copy_ystyle=None, - symmetric=None, - thickness=None, - traceref=None, - tracerefminus=None, - type=None, - value=None, - valueminus=None, - visible=None, - width=None, + array: NDArray|None = None, + arrayminus: NDArray|None = None, + arrayminussrc: str|None = None, + arraysrc: str|None = None, + color: str|None = None, + copy_ystyle: bool|None = None, + symmetric: bool|None = None, + thickness: int|float|None = None, + traceref: int|None = None, + tracerefminus: int|None = None, + type: Any|None = None, + value: int|float|None = None, + valueminus: int|float|None = None, + visible: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/_error_y.py b/plotly/graph_objs/scattergl/_error_y.py index 9bab67ed98..208d017901 100644 --- a/plotly/graph_objs/scattergl/_error_y.py +++ b/plotly/graph_objs/scattergl/_error_y.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -25,7 +28,7 @@ def array(self): Returns ------- - numpy.ndarray + NDArray """ return self['array'] @@ -47,7 +50,7 @@ def arrayminus(self): Returns ------- - numpy.ndarray + NDArray """ return self['arrayminus'] @@ -374,20 +377,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - array=None, - arrayminus=None, - arrayminussrc=None, - arraysrc=None, - color=None, - symmetric=None, - thickness=None, - traceref=None, - tracerefminus=None, - type=None, - value=None, - valueminus=None, - visible=None, - width=None, + array: NDArray|None = None, + arrayminus: NDArray|None = None, + arrayminussrc: str|None = None, + arraysrc: str|None = None, + color: str|None = None, + symmetric: bool|None = None, + thickness: int|float|None = None, + traceref: int|None = None, + tracerefminus: int|None = None, + type: Any|None = None, + value: int|float|None = None, + valueminus: int|float|None = None, + visible: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/_hoverlabel.py b/plotly/graph_objs/scattergl/_hoverlabel.py index 5c2a47c46d..72db30bdc1 100644 --- a/plotly/graph_objs/scattergl/_hoverlabel.py +++ b/plotly/graph_objs/scattergl/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/_legendgrouptitle.py b/plotly/graph_objs/scattergl/_legendgrouptitle.py index 0c51082146..c866d7cd28 100644 --- a/plotly/graph_objs/scattergl/_legendgrouptitle.py +++ b/plotly/graph_objs/scattergl/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/_line.py b/plotly/graph_objs/scattergl/_line.py index a341dc2860..9fcccaf81f 100644 --- a/plotly/graph_objs/scattergl/_line.py +++ b/plotly/graph_objs/scattergl/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -117,10 +120,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - shape=None, - width=None, + color: str|None = None, + dash: Any|None = None, + shape: Any|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/_marker.py b/plotly/graph_objs/scattergl/_marker.py index a68cb8628e..fcbd7eba17 100644 --- a/plotly/graph_objs/scattergl/_marker.py +++ b/plotly/graph_objs/scattergl/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -26,7 +29,7 @@ def angle(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['angle'] @@ -197,7 +200,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -361,7 +364,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -447,7 +450,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -647,7 +650,7 @@ def symbol(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['symbol'] @@ -799,30 +802,30 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - angle=None, - anglesrc=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - line=None, - opacity=None, - opacitysrc=None, - reversescale=None, - showscale=None, - size=None, - sizemin=None, - sizemode=None, - sizeref=None, - sizesrc=None, - symbol=None, - symbolsrc=None, + angle: int|float|None = None, + anglesrc: str|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + line: None|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, + size: int|float|None = None, + sizemin: int|float|None = None, + sizemode: Any|None = None, + sizeref: int|float|None = None, + sizesrc: str|None = None, + symbol: Any|None = None, + symbolsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/_selected.py b/plotly/graph_objs/scattergl/_selected.py index 58bcfcc992..aa7a055301 100644 --- a/plotly/graph_objs/scattergl/_selected.py +++ b/plotly/graph_objs/scattergl/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/_stream.py b/plotly/graph_objs/scattergl/_stream.py index 7b6d8fd00d..c677e9da08 100644 --- a/plotly/graph_objs/scattergl/_stream.py +++ b/plotly/graph_objs/scattergl/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/_textfont.py b/plotly/graph_objs/scattergl/_textfont.py index d54c350ef6..61f84ed242 100644 --- a/plotly/graph_objs/scattergl/_textfont.py +++ b/plotly/graph_objs/scattergl/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -111,7 +114,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -154,7 +157,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -196,7 +199,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -238,7 +241,7 @@ def weight(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['weight'] @@ -310,18 +313,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: Any|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/_unselected.py b/plotly/graph_objs/scattergl/_unselected.py index b532801fb0..24071fea40 100644 --- a/plotly/graph_objs/scattergl/_unselected.py +++ b/plotly/graph_objs/scattergl/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/hoverlabel/_font.py b/plotly/graph_objs/scattergl/hoverlabel/_font.py index c13bd76be9..a26093f0ae 100644 --- a/plotly/graph_objs/scattergl/hoverlabel/_font.py +++ b/plotly/graph_objs/scattergl/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/legendgrouptitle/_font.py b/plotly/graph_objs/scattergl/legendgrouptitle/_font.py index 6eea10946f..71a502a8e5 100644 --- a/plotly/graph_objs/scattergl/legendgrouptitle/_font.py +++ b/plotly/graph_objs/scattergl/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/marker/_colorbar.py b/plotly/graph_objs/scattergl/marker/_colorbar.py index 19a534620f..ad64fb1058 100644 --- a/plotly/graph_objs/scattergl/marker/_colorbar.py +++ b/plotly/graph_objs/scattergl/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/marker/_line.py b/plotly/graph_objs/scattergl/marker/_line.py index ddbfa6cdf4..431e93ecaf 100644 --- a/plotly/graph_objs/scattergl/marker/_line.py +++ b/plotly/graph_objs/scattergl/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -156,7 +159,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -303,7 +306,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -417,18 +420,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorscale=None, - colorsrc=None, - reversescale=None, - width=None, - widthsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + reversescale: bool|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/marker/colorbar/_tickfont.py b/plotly/graph_objs/scattergl/marker/colorbar/_tickfont.py index 62e7d31bac..8f478f6582 100644 --- a/plotly/graph_objs/scattergl/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/scattergl/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scattergl/marker/colorbar/_tickformatstop.py index 24714cfde4..1ce026e9f7 100644 --- a/plotly/graph_objs/scattergl/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/scattergl/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/marker/colorbar/_title.py b/plotly/graph_objs/scattergl/marker/colorbar/_title.py index 2cdcfdb2b5..7ea2a995d1 100644 --- a/plotly/graph_objs/scattergl/marker/colorbar/_title.py +++ b/plotly/graph_objs/scattergl/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/marker/colorbar/title/_font.py b/plotly/graph_objs/scattergl/marker/colorbar/title/_font.py index f23f2fcf92..f64456fccc 100644 --- a/plotly/graph_objs/scattergl/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/scattergl/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/selected/_marker.py b/plotly/graph_objs/scattergl/selected/_marker.py index 50d92fcc1f..d57057a0ca 100644 --- a/plotly/graph_objs/scattergl/selected/_marker.py +++ b/plotly/graph_objs/scattergl/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/selected/_textfont.py b/plotly/graph_objs/scattergl/selected/_textfont.py index 8a2a592191..93b1a9502d 100644 --- a/plotly/graph_objs/scattergl/selected/_textfont.py +++ b/plotly/graph_objs/scattergl/selected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -46,7 +49,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/unselected/_marker.py b/plotly/graph_objs/scattergl/unselected/_marker.py index 10abd69a62..314224f37a 100644 --- a/plotly/graph_objs/scattergl/unselected/_marker.py +++ b/plotly/graph_objs/scattergl/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattergl/unselected/_textfont.py b/plotly/graph_objs/scattergl/unselected/_textfont.py index d5e02cf1b0..c55ce41376 100644 --- a/plotly/graph_objs/scattergl/unselected/_textfont.py +++ b/plotly/graph_objs/scattergl/unselected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -48,7 +51,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/_cluster.py b/plotly/graph_objs/scattermap/_cluster.py index 9b6bbafe63..fb40aae611 100644 --- a/plotly/graph_objs/scattermap/_cluster.py +++ b/plotly/graph_objs/scattermap/_cluster.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -29,7 +32,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -111,7 +114,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -152,7 +155,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -197,7 +200,7 @@ def step(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['step'] @@ -263,16 +266,16 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - enabled=None, - maxzoom=None, - opacity=None, - opacitysrc=None, - size=None, - sizesrc=None, - step=None, - stepsrc=None, + color: str|None = None, + colorsrc: str|None = None, + enabled: bool|None = None, + maxzoom: int|float|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + step: int|float|None = None, + stepsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/_hoverlabel.py b/plotly/graph_objs/scattermap/_hoverlabel.py index 87e8bb98cd..3ee5acab86 100644 --- a/plotly/graph_objs/scattermap/_hoverlabel.py +++ b/plotly/graph_objs/scattermap/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/_legendgrouptitle.py b/plotly/graph_objs/scattermap/_legendgrouptitle.py index 42c0d4ec81..c510b481db 100644 --- a/plotly/graph_objs/scattermap/_legendgrouptitle.py +++ b/plotly/graph_objs/scattermap/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/_line.py b/plotly/graph_objs/scattermap/_line.py index ca0e5a5438..d04ca089d0 100644 --- a/plotly/graph_objs/scattermap/_line.py +++ b/plotly/graph_objs/scattermap/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/_marker.py b/plotly/graph_objs/scattermap/_marker.py index c083db4c11..99f187a69e 100644 --- a/plotly/graph_objs/scattermap/_marker.py +++ b/plotly/graph_objs/scattermap/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -48,7 +51,7 @@ def angle(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['angle'] @@ -219,7 +222,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -362,7 +365,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -448,7 +451,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -559,7 +562,7 @@ def symbol(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['symbol'] @@ -712,30 +715,30 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - allowoverlap=None, - angle=None, - anglesrc=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - opacity=None, - opacitysrc=None, - reversescale=None, - showscale=None, - size=None, - sizemin=None, - sizemode=None, - sizeref=None, - sizesrc=None, - symbol=None, - symbolsrc=None, + allowoverlap: bool|None = None, + angle: int|float|None = None, + anglesrc: str|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, + size: int|float|None = None, + sizemin: int|float|None = None, + sizemode: Any|None = None, + sizeref: int|float|None = None, + sizesrc: str|None = None, + symbol: str|None = None, + symbolsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/_selected.py b/plotly/graph_objs/scattermap/_selected.py index c77d15c7d9..5a520f98fd 100644 --- a/plotly/graph_objs/scattermap/_selected.py +++ b/plotly/graph_objs/scattermap/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/_stream.py b/plotly/graph_objs/scattermap/_stream.py index 939ae4f59a..9faa23a2e2 100644 --- a/plotly/graph_objs/scattermap/_stream.py +++ b/plotly/graph_objs/scattermap/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/_textfont.py b/plotly/graph_objs/scattermap/_textfont.py index 294a95c17b..7ea2dd1084 100644 --- a/plotly/graph_objs/scattermap/_textfont.py +++ b/plotly/graph_objs/scattermap/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -144,11 +147,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - size=None, - style=None, - weight=None, + color: str|None = None, + family: str|None = None, + size: int|float|None = None, + style: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/_unselected.py b/plotly/graph_objs/scattermap/_unselected.py index 51c7762dcb..e2d5245a54 100644 --- a/plotly/graph_objs/scattermap/_unselected.py +++ b/plotly/graph_objs/scattermap/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/hoverlabel/_font.py b/plotly/graph_objs/scattermap/hoverlabel/_font.py index 532c2c7202..3d24b1a331 100644 --- a/plotly/graph_objs/scattermap/hoverlabel/_font.py +++ b/plotly/graph_objs/scattermap/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/legendgrouptitle/_font.py b/plotly/graph_objs/scattermap/legendgrouptitle/_font.py index e4f5b0d822..358eb4bb1c 100644 --- a/plotly/graph_objs/scattermap/legendgrouptitle/_font.py +++ b/plotly/graph_objs/scattermap/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/marker/_colorbar.py b/plotly/graph_objs/scattermap/marker/_colorbar.py index 02e6b11d1b..222d8f189a 100644 --- a/plotly/graph_objs/scattermap/marker/_colorbar.py +++ b/plotly/graph_objs/scattermap/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/marker/colorbar/_tickfont.py b/plotly/graph_objs/scattermap/marker/colorbar/_tickfont.py index cf4ab82edc..62d6022f1f 100644 --- a/plotly/graph_objs/scattermap/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/scattermap/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scattermap/marker/colorbar/_tickformatstop.py index 73a55dc0ae..8371e9d33b 100644 --- a/plotly/graph_objs/scattermap/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/scattermap/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/marker/colorbar/_title.py b/plotly/graph_objs/scattermap/marker/colorbar/_title.py index 3a30a95fc4..1537ba8f70 100644 --- a/plotly/graph_objs/scattermap/marker/colorbar/_title.py +++ b/plotly/graph_objs/scattermap/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/marker/colorbar/title/_font.py b/plotly/graph_objs/scattermap/marker/colorbar/title/_font.py index 42d8fea932..650de81dc1 100644 --- a/plotly/graph_objs/scattermap/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/scattermap/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/selected/_marker.py b/plotly/graph_objs/scattermap/selected/_marker.py index 48f073d27b..1f6007088d 100644 --- a/plotly/graph_objs/scattermap/selected/_marker.py +++ b/plotly/graph_objs/scattermap/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermap/unselected/_marker.py b/plotly/graph_objs/scattermap/unselected/_marker.py index 3125c7f91d..5b7682dfd8 100644 --- a/plotly/graph_objs/scattermap/unselected/_marker.py +++ b/plotly/graph_objs/scattermap/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/_cluster.py b/plotly/graph_objs/scattermapbox/_cluster.py index 3dcd0d548d..8667105ddf 100644 --- a/plotly/graph_objs/scattermapbox/_cluster.py +++ b/plotly/graph_objs/scattermapbox/_cluster.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -29,7 +32,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -111,7 +114,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -152,7 +155,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -197,7 +200,7 @@ def step(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['step'] @@ -263,16 +266,16 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - enabled=None, - maxzoom=None, - opacity=None, - opacitysrc=None, - size=None, - sizesrc=None, - step=None, - stepsrc=None, + color: str|None = None, + colorsrc: str|None = None, + enabled: bool|None = None, + maxzoom: int|float|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + step: int|float|None = None, + stepsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/_hoverlabel.py b/plotly/graph_objs/scattermapbox/_hoverlabel.py index 2339bd5351..542cf41957 100644 --- a/plotly/graph_objs/scattermapbox/_hoverlabel.py +++ b/plotly/graph_objs/scattermapbox/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/_legendgrouptitle.py b/plotly/graph_objs/scattermapbox/_legendgrouptitle.py index 9064f2c726..49b9bab2b3 100644 --- a/plotly/graph_objs/scattermapbox/_legendgrouptitle.py +++ b/plotly/graph_objs/scattermapbox/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/_line.py b/plotly/graph_objs/scattermapbox/_line.py index 0ed11d7d08..363c41b25f 100644 --- a/plotly/graph_objs/scattermapbox/_line.py +++ b/plotly/graph_objs/scattermapbox/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/_marker.py b/plotly/graph_objs/scattermapbox/_marker.py index 4bc02abc31..65a3413667 100644 --- a/plotly/graph_objs/scattermapbox/_marker.py +++ b/plotly/graph_objs/scattermapbox/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -48,7 +51,7 @@ def angle(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['angle'] @@ -219,7 +222,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -362,7 +365,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -448,7 +451,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -559,7 +562,7 @@ def symbol(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['symbol'] @@ -712,30 +715,30 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - allowoverlap=None, - angle=None, - anglesrc=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - opacity=None, - opacitysrc=None, - reversescale=None, - showscale=None, - size=None, - sizemin=None, - sizemode=None, - sizeref=None, - sizesrc=None, - symbol=None, - symbolsrc=None, + allowoverlap: bool|None = None, + angle: int|float|None = None, + anglesrc: str|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, + size: int|float|None = None, + sizemin: int|float|None = None, + sizemode: Any|None = None, + sizeref: int|float|None = None, + sizesrc: str|None = None, + symbol: str|None = None, + symbolsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/_selected.py b/plotly/graph_objs/scattermapbox/_selected.py index c1537a34e0..f2130c3aa4 100644 --- a/plotly/graph_objs/scattermapbox/_selected.py +++ b/plotly/graph_objs/scattermapbox/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/_stream.py b/plotly/graph_objs/scattermapbox/_stream.py index 75c158fab9..669b914b90 100644 --- a/plotly/graph_objs/scattermapbox/_stream.py +++ b/plotly/graph_objs/scattermapbox/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/_textfont.py b/plotly/graph_objs/scattermapbox/_textfont.py index d5f20abb93..beaaed8959 100644 --- a/plotly/graph_objs/scattermapbox/_textfont.py +++ b/plotly/graph_objs/scattermapbox/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -144,11 +147,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - size=None, - style=None, - weight=None, + color: str|None = None, + family: str|None = None, + size: int|float|None = None, + style: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/_unselected.py b/plotly/graph_objs/scattermapbox/_unselected.py index 6dab6e35c3..24eadebfb5 100644 --- a/plotly/graph_objs/scattermapbox/_unselected.py +++ b/plotly/graph_objs/scattermapbox/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/hoverlabel/_font.py b/plotly/graph_objs/scattermapbox/hoverlabel/_font.py index 0e6d09fd64..fc7e8b55c4 100644 --- a/plotly/graph_objs/scattermapbox/hoverlabel/_font.py +++ b/plotly/graph_objs/scattermapbox/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/legendgrouptitle/_font.py b/plotly/graph_objs/scattermapbox/legendgrouptitle/_font.py index 00737863cb..dfbf02b587 100644 --- a/plotly/graph_objs/scattermapbox/legendgrouptitle/_font.py +++ b/plotly/graph_objs/scattermapbox/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/marker/_colorbar.py b/plotly/graph_objs/scattermapbox/marker/_colorbar.py index ddca889705..1ea2908568 100644 --- a/plotly/graph_objs/scattermapbox/marker/_colorbar.py +++ b/plotly/graph_objs/scattermapbox/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/marker/colorbar/_tickfont.py b/plotly/graph_objs/scattermapbox/marker/colorbar/_tickfont.py index b806bad2e9..86e0d7fc76 100644 --- a/plotly/graph_objs/scattermapbox/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/scattermapbox/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scattermapbox/marker/colorbar/_tickformatstop.py index fa2cb7aedb..0bc9aec454 100644 --- a/plotly/graph_objs/scattermapbox/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/scattermapbox/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/marker/colorbar/_title.py b/plotly/graph_objs/scattermapbox/marker/colorbar/_title.py index 5a0aee581b..b3746af811 100644 --- a/plotly/graph_objs/scattermapbox/marker/colorbar/_title.py +++ b/plotly/graph_objs/scattermapbox/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/marker/colorbar/title/_font.py b/plotly/graph_objs/scattermapbox/marker/colorbar/title/_font.py index 751ed75bc6..56a4d6ac86 100644 --- a/plotly/graph_objs/scattermapbox/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/scattermapbox/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/selected/_marker.py b/plotly/graph_objs/scattermapbox/selected/_marker.py index 8b8e50a86e..fd5e19ecdd 100644 --- a/plotly/graph_objs/scattermapbox/selected/_marker.py +++ b/plotly/graph_objs/scattermapbox/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattermapbox/unselected/_marker.py b/plotly/graph_objs/scattermapbox/unselected/_marker.py index a8c00e5d56..7aff037d80 100644 --- a/plotly/graph_objs/scattermapbox/unselected/_marker.py +++ b/plotly/graph_objs/scattermapbox/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/_hoverlabel.py b/plotly/graph_objs/scatterpolar/_hoverlabel.py index 85791a1789..6e12a4b139 100644 --- a/plotly/graph_objs/scatterpolar/_hoverlabel.py +++ b/plotly/graph_objs/scatterpolar/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/_legendgrouptitle.py b/plotly/graph_objs/scatterpolar/_legendgrouptitle.py index 5727ec0be4..340ffdd30a 100644 --- a/plotly/graph_objs/scatterpolar/_legendgrouptitle.py +++ b/plotly/graph_objs/scatterpolar/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/_line.py b/plotly/graph_objs/scatterpolar/_line.py index ec2ee318fa..27fcd9fe7c 100644 --- a/plotly/graph_objs/scatterpolar/_line.py +++ b/plotly/graph_objs/scatterpolar/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def backoff(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['backoff'] @@ -205,13 +208,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - backoff=None, - backoffsrc=None, - color=None, - dash=None, - shape=None, - smoothing=None, - width=None, + backoff: int|float|None = None, + backoffsrc: str|None = None, + color: str|None = None, + dash: str|None = None, + shape: Any|None = None, + smoothing: int|float|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/_marker.py b/plotly/graph_objs/scatterpolar/_marker.py index e00d7f7b48..8c391b094e 100644 --- a/plotly/graph_objs/scatterpolar/_marker.py +++ b/plotly/graph_objs/scatterpolar/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -26,7 +29,7 @@ def angle(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['angle'] @@ -220,7 +223,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -426,7 +429,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -512,7 +515,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -623,7 +626,7 @@ def standoff(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['standoff'] @@ -756,7 +759,7 @@ def symbol(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['symbol'] @@ -927,35 +930,35 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - angle=None, - angleref=None, - anglesrc=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - gradient=None, - line=None, - maxdisplayed=None, - opacity=None, - opacitysrc=None, - reversescale=None, - showscale=None, - size=None, - sizemin=None, - sizemode=None, - sizeref=None, - sizesrc=None, - standoff=None, - standoffsrc=None, - symbol=None, - symbolsrc=None, + angle: int|float|None = None, + angleref: Any|None = None, + anglesrc: str|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + gradient: None|None = None, + line: None|None = None, + maxdisplayed: int|float|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, + size: int|float|None = None, + sizemin: int|float|None = None, + sizemode: Any|None = None, + sizeref: int|float|None = None, + sizesrc: str|None = None, + standoff: int|float|None = None, + standoffsrc: str|None = None, + symbol: Any|None = None, + symbolsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/_selected.py b/plotly/graph_objs/scatterpolar/_selected.py index 2776ffea80..8aab8e0ecd 100644 --- a/plotly/graph_objs/scatterpolar/_selected.py +++ b/plotly/graph_objs/scatterpolar/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/_stream.py b/plotly/graph_objs/scatterpolar/_stream.py index 01cc093317..7a98695b5f 100644 --- a/plotly/graph_objs/scatterpolar/_stream.py +++ b/plotly/graph_objs/scatterpolar/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/_textfont.py b/plotly/graph_objs/scatterpolar/_textfont.py index 889be37466..0d0cc2316b 100644 --- a/plotly/graph_objs/scatterpolar/_textfont.py +++ b/plotly/graph_objs/scatterpolar/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/_unselected.py b/plotly/graph_objs/scatterpolar/_unselected.py index 263b29dd00..4664b0f4b8 100644 --- a/plotly/graph_objs/scatterpolar/_unselected.py +++ b/plotly/graph_objs/scatterpolar/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/hoverlabel/_font.py b/plotly/graph_objs/scatterpolar/hoverlabel/_font.py index c3db40a425..7e04a12e45 100644 --- a/plotly/graph_objs/scatterpolar/hoverlabel/_font.py +++ b/plotly/graph_objs/scatterpolar/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/legendgrouptitle/_font.py b/plotly/graph_objs/scatterpolar/legendgrouptitle/_font.py index 4182032c29..d3dadf7eba 100644 --- a/plotly/graph_objs/scatterpolar/legendgrouptitle/_font.py +++ b/plotly/graph_objs/scatterpolar/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/marker/_colorbar.py b/plotly/graph_objs/scatterpolar/marker/_colorbar.py index d7c5836287..38dd3d0c01 100644 --- a/plotly/graph_objs/scatterpolar/marker/_colorbar.py +++ b/plotly/graph_objs/scatterpolar/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/marker/_gradient.py b/plotly/graph_objs/scatterpolar/marker/_gradient.py index e72f59a14e..4f96fe63b0 100644 --- a/plotly/graph_objs/scatterpolar/marker/_gradient.py +++ b/plotly/graph_objs/scatterpolar/marker/_gradient.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -30,7 +33,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def type(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['type'] @@ -120,10 +123,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - type=None, - typesrc=None, + color: str|None = None, + colorsrc: str|None = None, + type: Any|None = None, + typesrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/marker/_line.py b/plotly/graph_objs/scatterpolar/marker/_line.py index 6806f850a0..48a3a79cfd 100644 --- a/plotly/graph_objs/scatterpolar/marker/_line.py +++ b/plotly/graph_objs/scatterpolar/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -156,7 +159,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -303,7 +306,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -417,18 +420,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorscale=None, - colorsrc=None, - reversescale=None, - width=None, - widthsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + reversescale: bool|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/marker/colorbar/_tickfont.py b/plotly/graph_objs/scatterpolar/marker/colorbar/_tickfont.py index 6228e849e1..d721661f60 100644 --- a/plotly/graph_objs/scatterpolar/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/scatterpolar/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scatterpolar/marker/colorbar/_tickformatstop.py index 9ff3c53483..9212054f26 100644 --- a/plotly/graph_objs/scatterpolar/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/scatterpolar/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/marker/colorbar/_title.py b/plotly/graph_objs/scatterpolar/marker/colorbar/_title.py index 932bc58717..b07a5dafc1 100644 --- a/plotly/graph_objs/scatterpolar/marker/colorbar/_title.py +++ b/plotly/graph_objs/scatterpolar/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/marker/colorbar/title/_font.py b/plotly/graph_objs/scatterpolar/marker/colorbar/title/_font.py index 2db2ac7289..c3abd139f5 100644 --- a/plotly/graph_objs/scatterpolar/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/scatterpolar/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/selected/_marker.py b/plotly/graph_objs/scatterpolar/selected/_marker.py index 3ac2dffb1c..707a2b3cc8 100644 --- a/plotly/graph_objs/scatterpolar/selected/_marker.py +++ b/plotly/graph_objs/scatterpolar/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/selected/_textfont.py b/plotly/graph_objs/scatterpolar/selected/_textfont.py index 446cc7b5be..038706295e 100644 --- a/plotly/graph_objs/scatterpolar/selected/_textfont.py +++ b/plotly/graph_objs/scatterpolar/selected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -46,7 +49,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/unselected/_marker.py b/plotly/graph_objs/scatterpolar/unselected/_marker.py index 6edf6d2596..2173199f09 100644 --- a/plotly/graph_objs/scatterpolar/unselected/_marker.py +++ b/plotly/graph_objs/scatterpolar/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolar/unselected/_textfont.py b/plotly/graph_objs/scatterpolar/unselected/_textfont.py index e1c0510503..7e63cab795 100644 --- a/plotly/graph_objs/scatterpolar/unselected/_textfont.py +++ b/plotly/graph_objs/scatterpolar/unselected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -48,7 +51,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/_hoverlabel.py b/plotly/graph_objs/scatterpolargl/_hoverlabel.py index f28917aa3f..f4e8edab04 100644 --- a/plotly/graph_objs/scatterpolargl/_hoverlabel.py +++ b/plotly/graph_objs/scatterpolargl/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/_legendgrouptitle.py b/plotly/graph_objs/scatterpolargl/_legendgrouptitle.py index 3d2b198093..915dfa1014 100644 --- a/plotly/graph_objs/scatterpolargl/_legendgrouptitle.py +++ b/plotly/graph_objs/scatterpolargl/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/_line.py b/plotly/graph_objs/scatterpolargl/_line.py index f928d48f08..301b211839 100644 --- a/plotly/graph_objs/scatterpolargl/_line.py +++ b/plotly/graph_objs/scatterpolargl/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -92,9 +95,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str|None = None, + dash: Any|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/_marker.py b/plotly/graph_objs/scatterpolargl/_marker.py index 858adfe2e9..4e18453bf0 100644 --- a/plotly/graph_objs/scatterpolargl/_marker.py +++ b/plotly/graph_objs/scatterpolargl/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -26,7 +29,7 @@ def angle(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['angle'] @@ -197,7 +200,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -361,7 +364,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -447,7 +450,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -647,7 +650,7 @@ def symbol(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['symbol'] @@ -799,30 +802,30 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - angle=None, - anglesrc=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - line=None, - opacity=None, - opacitysrc=None, - reversescale=None, - showscale=None, - size=None, - sizemin=None, - sizemode=None, - sizeref=None, - sizesrc=None, - symbol=None, - symbolsrc=None, + angle: int|float|None = None, + anglesrc: str|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + line: None|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, + size: int|float|None = None, + sizemin: int|float|None = None, + sizemode: Any|None = None, + sizeref: int|float|None = None, + sizesrc: str|None = None, + symbol: Any|None = None, + symbolsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/_selected.py b/plotly/graph_objs/scatterpolargl/_selected.py index 0767de6fd0..77a21e3f33 100644 --- a/plotly/graph_objs/scatterpolargl/_selected.py +++ b/plotly/graph_objs/scatterpolargl/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/_stream.py b/plotly/graph_objs/scatterpolargl/_stream.py index a126e595ef..d3c981a2c3 100644 --- a/plotly/graph_objs/scatterpolargl/_stream.py +++ b/plotly/graph_objs/scatterpolargl/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/_textfont.py b/plotly/graph_objs/scatterpolargl/_textfont.py index ad23f1cc5e..b722313ed7 100644 --- a/plotly/graph_objs/scatterpolargl/_textfont.py +++ b/plotly/graph_objs/scatterpolargl/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -111,7 +114,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -154,7 +157,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -196,7 +199,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -238,7 +241,7 @@ def weight(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['weight'] @@ -310,18 +313,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: Any|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/_unselected.py b/plotly/graph_objs/scatterpolargl/_unselected.py index d3afd41f14..12accf9ebf 100644 --- a/plotly/graph_objs/scatterpolargl/_unselected.py +++ b/plotly/graph_objs/scatterpolargl/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/hoverlabel/_font.py b/plotly/graph_objs/scatterpolargl/hoverlabel/_font.py index b85be29f53..b5287fd500 100644 --- a/plotly/graph_objs/scatterpolargl/hoverlabel/_font.py +++ b/plotly/graph_objs/scatterpolargl/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/legendgrouptitle/_font.py b/plotly/graph_objs/scatterpolargl/legendgrouptitle/_font.py index 4e28fe5a27..aa9b4d1acc 100644 --- a/plotly/graph_objs/scatterpolargl/legendgrouptitle/_font.py +++ b/plotly/graph_objs/scatterpolargl/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/marker/_colorbar.py b/plotly/graph_objs/scatterpolargl/marker/_colorbar.py index 514fe50fb2..5d0140078c 100644 --- a/plotly/graph_objs/scatterpolargl/marker/_colorbar.py +++ b/plotly/graph_objs/scatterpolargl/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/marker/_line.py b/plotly/graph_objs/scatterpolargl/marker/_line.py index 592e3f8f71..eebc4d10da 100644 --- a/plotly/graph_objs/scatterpolargl/marker/_line.py +++ b/plotly/graph_objs/scatterpolargl/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -156,7 +159,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -303,7 +306,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -417,18 +420,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorscale=None, - colorsrc=None, - reversescale=None, - width=None, - widthsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + reversescale: bool|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickfont.py b/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickfont.py index b71cc6c796..0c7e8002e0 100644 --- a/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickformatstop.py index 51a7fa3df8..382b34f5ef 100644 --- a/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/marker/colorbar/_title.py b/plotly/graph_objs/scatterpolargl/marker/colorbar/_title.py index b1aa8c6ff5..cd4a6aae9b 100644 --- a/plotly/graph_objs/scatterpolargl/marker/colorbar/_title.py +++ b/plotly/graph_objs/scatterpolargl/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/marker/colorbar/title/_font.py b/plotly/graph_objs/scatterpolargl/marker/colorbar/title/_font.py index 989eda2e2e..b2b6dd5207 100644 --- a/plotly/graph_objs/scatterpolargl/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/scatterpolargl/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/selected/_marker.py b/plotly/graph_objs/scatterpolargl/selected/_marker.py index 02333170f8..9d0c08d295 100644 --- a/plotly/graph_objs/scatterpolargl/selected/_marker.py +++ b/plotly/graph_objs/scatterpolargl/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/selected/_textfont.py b/plotly/graph_objs/scatterpolargl/selected/_textfont.py index 2e76202610..b44067de2d 100644 --- a/plotly/graph_objs/scatterpolargl/selected/_textfont.py +++ b/plotly/graph_objs/scatterpolargl/selected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -46,7 +49,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/unselected/_marker.py b/plotly/graph_objs/scatterpolargl/unselected/_marker.py index 22ff3d77d4..739d01fe12 100644 --- a/plotly/graph_objs/scatterpolargl/unselected/_marker.py +++ b/plotly/graph_objs/scatterpolargl/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterpolargl/unselected/_textfont.py b/plotly/graph_objs/scatterpolargl/unselected/_textfont.py index 2dd6123b1e..f732adb1d5 100644 --- a/plotly/graph_objs/scatterpolargl/unselected/_textfont.py +++ b/plotly/graph_objs/scatterpolargl/unselected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -48,7 +51,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/_hoverlabel.py b/plotly/graph_objs/scattersmith/_hoverlabel.py index 2500c9ddac..2103643b52 100644 --- a/plotly/graph_objs/scattersmith/_hoverlabel.py +++ b/plotly/graph_objs/scattersmith/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/_legendgrouptitle.py b/plotly/graph_objs/scattersmith/_legendgrouptitle.py index ae222304b1..c0928f597e 100644 --- a/plotly/graph_objs/scattersmith/_legendgrouptitle.py +++ b/plotly/graph_objs/scattersmith/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/_line.py b/plotly/graph_objs/scattersmith/_line.py index 4677fdc0f1..78007edcc7 100644 --- a/plotly/graph_objs/scattersmith/_line.py +++ b/plotly/graph_objs/scattersmith/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def backoff(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['backoff'] @@ -205,13 +208,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - backoff=None, - backoffsrc=None, - color=None, - dash=None, - shape=None, - smoothing=None, - width=None, + backoff: int|float|None = None, + backoffsrc: str|None = None, + color: str|None = None, + dash: str|None = None, + shape: Any|None = None, + smoothing: int|float|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/_marker.py b/plotly/graph_objs/scattersmith/_marker.py index 093d8b5c94..d359720322 100644 --- a/plotly/graph_objs/scattersmith/_marker.py +++ b/plotly/graph_objs/scattersmith/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -26,7 +29,7 @@ def angle(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['angle'] @@ -220,7 +223,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -426,7 +429,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -512,7 +515,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -623,7 +626,7 @@ def standoff(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['standoff'] @@ -756,7 +759,7 @@ def symbol(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['symbol'] @@ -927,35 +930,35 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - angle=None, - angleref=None, - anglesrc=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - gradient=None, - line=None, - maxdisplayed=None, - opacity=None, - opacitysrc=None, - reversescale=None, - showscale=None, - size=None, - sizemin=None, - sizemode=None, - sizeref=None, - sizesrc=None, - standoff=None, - standoffsrc=None, - symbol=None, - symbolsrc=None, + angle: int|float|None = None, + angleref: Any|None = None, + anglesrc: str|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + gradient: None|None = None, + line: None|None = None, + maxdisplayed: int|float|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, + size: int|float|None = None, + sizemin: int|float|None = None, + sizemode: Any|None = None, + sizeref: int|float|None = None, + sizesrc: str|None = None, + standoff: int|float|None = None, + standoffsrc: str|None = None, + symbol: Any|None = None, + symbolsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/_selected.py b/plotly/graph_objs/scattersmith/_selected.py index 10bc081ddd..e9925a567e 100644 --- a/plotly/graph_objs/scattersmith/_selected.py +++ b/plotly/graph_objs/scattersmith/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/_stream.py b/plotly/graph_objs/scattersmith/_stream.py index 4d75c6821f..63d5c1872e 100644 --- a/plotly/graph_objs/scattersmith/_stream.py +++ b/plotly/graph_objs/scattersmith/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/_textfont.py b/plotly/graph_objs/scattersmith/_textfont.py index 91f2b8b23e..853f0ffdc8 100644 --- a/plotly/graph_objs/scattersmith/_textfont.py +++ b/plotly/graph_objs/scattersmith/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/_unselected.py b/plotly/graph_objs/scattersmith/_unselected.py index d026f18e61..cc094aeae3 100644 --- a/plotly/graph_objs/scattersmith/_unselected.py +++ b/plotly/graph_objs/scattersmith/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/hoverlabel/_font.py b/plotly/graph_objs/scattersmith/hoverlabel/_font.py index 1d0dda3555..3244d8f839 100644 --- a/plotly/graph_objs/scattersmith/hoverlabel/_font.py +++ b/plotly/graph_objs/scattersmith/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/legendgrouptitle/_font.py b/plotly/graph_objs/scattersmith/legendgrouptitle/_font.py index e302254600..534f1b9991 100644 --- a/plotly/graph_objs/scattersmith/legendgrouptitle/_font.py +++ b/plotly/graph_objs/scattersmith/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/marker/_colorbar.py b/plotly/graph_objs/scattersmith/marker/_colorbar.py index 02b39de7bf..d63927d0d4 100644 --- a/plotly/graph_objs/scattersmith/marker/_colorbar.py +++ b/plotly/graph_objs/scattersmith/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/marker/_gradient.py b/plotly/graph_objs/scattersmith/marker/_gradient.py index d8bd7999e5..b26078bf3b 100644 --- a/plotly/graph_objs/scattersmith/marker/_gradient.py +++ b/plotly/graph_objs/scattersmith/marker/_gradient.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -30,7 +33,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def type(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['type'] @@ -120,10 +123,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - type=None, - typesrc=None, + color: str|None = None, + colorsrc: str|None = None, + type: Any|None = None, + typesrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/marker/_line.py b/plotly/graph_objs/scattersmith/marker/_line.py index 82278ccf4c..558ea52723 100644 --- a/plotly/graph_objs/scattersmith/marker/_line.py +++ b/plotly/graph_objs/scattersmith/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -156,7 +159,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -303,7 +306,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -417,18 +420,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorscale=None, - colorsrc=None, - reversescale=None, - width=None, - widthsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + reversescale: bool|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/marker/colorbar/_tickfont.py b/plotly/graph_objs/scattersmith/marker/colorbar/_tickfont.py index 42f4325d87..1627c6dd1a 100644 --- a/plotly/graph_objs/scattersmith/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/scattersmith/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scattersmith/marker/colorbar/_tickformatstop.py index abd6943f5f..ec9f31f059 100644 --- a/plotly/graph_objs/scattersmith/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/scattersmith/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/marker/colorbar/_title.py b/plotly/graph_objs/scattersmith/marker/colorbar/_title.py index b5e5632f7f..694d00b338 100644 --- a/plotly/graph_objs/scattersmith/marker/colorbar/_title.py +++ b/plotly/graph_objs/scattersmith/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/marker/colorbar/title/_font.py b/plotly/graph_objs/scattersmith/marker/colorbar/title/_font.py index 32ce2e9193..9e8a065210 100644 --- a/plotly/graph_objs/scattersmith/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/scattersmith/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/selected/_marker.py b/plotly/graph_objs/scattersmith/selected/_marker.py index c48b3f85a9..2ec3b384ed 100644 --- a/plotly/graph_objs/scattersmith/selected/_marker.py +++ b/plotly/graph_objs/scattersmith/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/selected/_textfont.py b/plotly/graph_objs/scattersmith/selected/_textfont.py index d68a9e0540..111f4e6c65 100644 --- a/plotly/graph_objs/scattersmith/selected/_textfont.py +++ b/plotly/graph_objs/scattersmith/selected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -46,7 +49,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/unselected/_marker.py b/plotly/graph_objs/scattersmith/unselected/_marker.py index 34b516a9be..30dea5ad96 100644 --- a/plotly/graph_objs/scattersmith/unselected/_marker.py +++ b/plotly/graph_objs/scattersmith/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scattersmith/unselected/_textfont.py b/plotly/graph_objs/scattersmith/unselected/_textfont.py index bb9816e7e3..a3ae5d29f2 100644 --- a/plotly/graph_objs/scattersmith/unselected/_textfont.py +++ b/plotly/graph_objs/scattersmith/unselected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -48,7 +51,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/_hoverlabel.py b/plotly/graph_objs/scatterternary/_hoverlabel.py index 007020419b..3f4d843410 100644 --- a/plotly/graph_objs/scatterternary/_hoverlabel.py +++ b/plotly/graph_objs/scatterternary/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/_legendgrouptitle.py b/plotly/graph_objs/scatterternary/_legendgrouptitle.py index 206f1225e3..d054721725 100644 --- a/plotly/graph_objs/scatterternary/_legendgrouptitle.py +++ b/plotly/graph_objs/scatterternary/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/_line.py b/plotly/graph_objs/scatterternary/_line.py index 682afe6a54..3cc183c924 100644 --- a/plotly/graph_objs/scatterternary/_line.py +++ b/plotly/graph_objs/scatterternary/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def backoff(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['backoff'] @@ -205,13 +208,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - backoff=None, - backoffsrc=None, - color=None, - dash=None, - shape=None, - smoothing=None, - width=None, + backoff: int|float|None = None, + backoffsrc: str|None = None, + color: str|None = None, + dash: str|None = None, + shape: Any|None = None, + smoothing: int|float|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/_marker.py b/plotly/graph_objs/scatterternary/_marker.py index abe1cb74f2..87d4ff5569 100644 --- a/plotly/graph_objs/scatterternary/_marker.py +++ b/plotly/graph_objs/scatterternary/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -26,7 +29,7 @@ def angle(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['angle'] @@ -220,7 +223,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -426,7 +429,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -512,7 +515,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -623,7 +626,7 @@ def standoff(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['standoff'] @@ -756,7 +759,7 @@ def symbol(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['symbol'] @@ -927,35 +930,35 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - angle=None, - angleref=None, - anglesrc=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - gradient=None, - line=None, - maxdisplayed=None, - opacity=None, - opacitysrc=None, - reversescale=None, - showscale=None, - size=None, - sizemin=None, - sizemode=None, - sizeref=None, - sizesrc=None, - standoff=None, - standoffsrc=None, - symbol=None, - symbolsrc=None, + angle: int|float|None = None, + angleref: Any|None = None, + anglesrc: str|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + gradient: None|None = None, + line: None|None = None, + maxdisplayed: int|float|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, + size: int|float|None = None, + sizemin: int|float|None = None, + sizemode: Any|None = None, + sizeref: int|float|None = None, + sizesrc: str|None = None, + standoff: int|float|None = None, + standoffsrc: str|None = None, + symbol: Any|None = None, + symbolsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/_selected.py b/plotly/graph_objs/scatterternary/_selected.py index bedb334297..69d2f9d9f4 100644 --- a/plotly/graph_objs/scatterternary/_selected.py +++ b/plotly/graph_objs/scatterternary/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/_stream.py b/plotly/graph_objs/scatterternary/_stream.py index fb99b3bf6e..6965c3962c 100644 --- a/plotly/graph_objs/scatterternary/_stream.py +++ b/plotly/graph_objs/scatterternary/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/_textfont.py b/plotly/graph_objs/scatterternary/_textfont.py index a0a6f6f0f2..f6394e3f42 100644 --- a/plotly/graph_objs/scatterternary/_textfont.py +++ b/plotly/graph_objs/scatterternary/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/_unselected.py b/plotly/graph_objs/scatterternary/_unselected.py index 297262e19f..cff721a8b6 100644 --- a/plotly/graph_objs/scatterternary/_unselected.py +++ b/plotly/graph_objs/scatterternary/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, - textfont=None, + marker: None|None = None, + textfont: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/hoverlabel/_font.py b/plotly/graph_objs/scatterternary/hoverlabel/_font.py index 1912a5e188..a217d26ab8 100644 --- a/plotly/graph_objs/scatterternary/hoverlabel/_font.py +++ b/plotly/graph_objs/scatterternary/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/legendgrouptitle/_font.py b/plotly/graph_objs/scatterternary/legendgrouptitle/_font.py index d0cc7d6c64..66eb9e140c 100644 --- a/plotly/graph_objs/scatterternary/legendgrouptitle/_font.py +++ b/plotly/graph_objs/scatterternary/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/marker/_colorbar.py b/plotly/graph_objs/scatterternary/marker/_colorbar.py index 5eee99516b..a2129940f6 100644 --- a/plotly/graph_objs/scatterternary/marker/_colorbar.py +++ b/plotly/graph_objs/scatterternary/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/marker/_gradient.py b/plotly/graph_objs/scatterternary/marker/_gradient.py index d8c063cab8..be90ab3cdb 100644 --- a/plotly/graph_objs/scatterternary/marker/_gradient.py +++ b/plotly/graph_objs/scatterternary/marker/_gradient.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -30,7 +33,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def type(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['type'] @@ -120,10 +123,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - type=None, - typesrc=None, + color: str|None = None, + colorsrc: str|None = None, + type: Any|None = None, + typesrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/marker/_line.py b/plotly/graph_objs/scatterternary/marker/_line.py index d17a60cd89..18bf1954fe 100644 --- a/plotly/graph_objs/scatterternary/marker/_line.py +++ b/plotly/graph_objs/scatterternary/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -156,7 +159,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -303,7 +306,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -417,18 +420,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorscale=None, - colorsrc=None, - reversescale=None, - width=None, - widthsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + reversescale: bool|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/marker/colorbar/_tickfont.py b/plotly/graph_objs/scatterternary/marker/colorbar/_tickfont.py index 357ecbf5e4..082e874819 100644 --- a/plotly/graph_objs/scatterternary/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/scatterternary/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scatterternary/marker/colorbar/_tickformatstop.py index 2b4e274356..39d2216941 100644 --- a/plotly/graph_objs/scatterternary/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/scatterternary/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/marker/colorbar/_title.py b/plotly/graph_objs/scatterternary/marker/colorbar/_title.py index 9a72eab294..922a24518a 100644 --- a/plotly/graph_objs/scatterternary/marker/colorbar/_title.py +++ b/plotly/graph_objs/scatterternary/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/marker/colorbar/title/_font.py b/plotly/graph_objs/scatterternary/marker/colorbar/title/_font.py index c2e2631fe6..b2a1549021 100644 --- a/plotly/graph_objs/scatterternary/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/scatterternary/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/selected/_marker.py b/plotly/graph_objs/scatterternary/selected/_marker.py index 25c60aa070..4060ef970c 100644 --- a/plotly/graph_objs/scatterternary/selected/_marker.py +++ b/plotly/graph_objs/scatterternary/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/selected/_textfont.py b/plotly/graph_objs/scatterternary/selected/_textfont.py index 0801293700..46b9d2a416 100644 --- a/plotly/graph_objs/scatterternary/selected/_textfont.py +++ b/plotly/graph_objs/scatterternary/selected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -46,7 +49,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/unselected/_marker.py b/plotly/graph_objs/scatterternary/unselected/_marker.py index 265e03a909..094b3a2bf6 100644 --- a/plotly/graph_objs/scatterternary/unselected/_marker.py +++ b/plotly/graph_objs/scatterternary/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/scatterternary/unselected/_textfont.py b/plotly/graph_objs/scatterternary/unselected/_textfont.py index d1f69287c8..b0f218a9f2 100644 --- a/plotly/graph_objs/scatterternary/unselected/_textfont.py +++ b/plotly/graph_objs/scatterternary/unselected/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -48,7 +51,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/_diagonal.py b/plotly/graph_objs/splom/_diagonal.py index 7570373570..45d6de7c02 100644 --- a/plotly/graph_objs/splom/_diagonal.py +++ b/plotly/graph_objs/splom/_diagonal.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - visible=None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/_dimension.py b/plotly/graph_objs/splom/_dimension.py index f50537c2a4..e61ba57c1d 100644 --- a/plotly/graph_objs/splom/_dimension.py +++ b/plotly/graph_objs/splom/_dimension.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -121,7 +124,7 @@ def values(self): Returns ------- - numpy.ndarray + NDArray """ return self['values'] @@ -213,13 +216,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - axis=None, - label=None, - name=None, - templateitemname=None, - values=None, - valuessrc=None, - visible=None, + axis: None|None = None, + label: str|None = None, + name: str|None = None, + templateitemname: str|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/_hoverlabel.py b/plotly/graph_objs/splom/_hoverlabel.py index 629a884699..6d1ea15c61 100644 --- a/plotly/graph_objs/splom/_hoverlabel.py +++ b/plotly/graph_objs/splom/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/_legendgrouptitle.py b/plotly/graph_objs/splom/_legendgrouptitle.py index 060fa03906..b4ed351fc7 100644 --- a/plotly/graph_objs/splom/_legendgrouptitle.py +++ b/plotly/graph_objs/splom/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/_marker.py b/plotly/graph_objs/splom/_marker.py index 93e8a947cc..81d8b91781 100644 --- a/plotly/graph_objs/splom/_marker.py +++ b/plotly/graph_objs/splom/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -26,7 +29,7 @@ def angle(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['angle'] @@ -197,7 +200,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -361,7 +364,7 @@ def opacity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['opacity'] @@ -447,7 +450,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -647,7 +650,7 @@ def symbol(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['symbol'] @@ -799,30 +802,30 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - angle=None, - anglesrc=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorbar=None, - colorscale=None, - colorsrc=None, - line=None, - opacity=None, - opacitysrc=None, - reversescale=None, - showscale=None, - size=None, - sizemin=None, - sizemode=None, - sizeref=None, - sizesrc=None, - symbol=None, - symbolsrc=None, + angle: int|float|None = None, + anglesrc: str|None = None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + line: None|None = None, + opacity: int|float|None = None, + opacitysrc: str|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, + size: int|float|None = None, + sizemin: int|float|None = None, + sizemode: Any|None = None, + sizeref: int|float|None = None, + sizesrc: str|None = None, + symbol: Any|None = None, + symbolsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/_selected.py b/plotly/graph_objs/splom/_selected.py index 418d6262a4..e16d4ab307 100644 --- a/plotly/graph_objs/splom/_selected.py +++ b/plotly/graph_objs/splom/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/_stream.py b/plotly/graph_objs/splom/_stream.py index 7338aa4e49..319d3a8594 100644 --- a/plotly/graph_objs/splom/_stream.py +++ b/plotly/graph_objs/splom/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/_unselected.py b/plotly/graph_objs/splom/_unselected.py index 0244a07439..d462f58669 100644 --- a/plotly/graph_objs/splom/_unselected.py +++ b/plotly/graph_objs/splom/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/dimension/_axis.py b/plotly/graph_objs/splom/dimension/_axis.py index b9f146cf17..4aaf9b2c3a 100644 --- a/plotly/graph_objs/splom/dimension/_axis.py +++ b/plotly/graph_objs/splom/dimension/_axis.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -74,8 +77,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - matches=None, - type=None, + matches: bool|None = None, + type: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/hoverlabel/_font.py b/plotly/graph_objs/splom/hoverlabel/_font.py index bb1869170d..fabe760ec6 100644 --- a/plotly/graph_objs/splom/hoverlabel/_font.py +++ b/plotly/graph_objs/splom/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/legendgrouptitle/_font.py b/plotly/graph_objs/splom/legendgrouptitle/_font.py index f621e4f728..94367aba41 100644 --- a/plotly/graph_objs/splom/legendgrouptitle/_font.py +++ b/plotly/graph_objs/splom/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/marker/_colorbar.py b/plotly/graph_objs/splom/marker/_colorbar.py index c81541a9d8..5f55b44be9 100644 --- a/plotly/graph_objs/splom/marker/_colorbar.py +++ b/plotly/graph_objs/splom/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/marker/_line.py b/plotly/graph_objs/splom/marker/_line.py index 4a5c514197..c94d9b5e77 100644 --- a/plotly/graph_objs/splom/marker/_line.py +++ b/plotly/graph_objs/splom/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -156,7 +159,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -303,7 +306,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -417,18 +420,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, - colorscale=None, - colorsrc=None, - reversescale=None, - width=None, - widthsrc=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + color: str|None = None, + coloraxis: str|None = None, + colorscale: str|None = None, + colorsrc: str|None = None, + reversescale: bool|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/marker/colorbar/_tickfont.py b/plotly/graph_objs/splom/marker/colorbar/_tickfont.py index 52d598791c..0503c7a914 100644 --- a/plotly/graph_objs/splom/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/splom/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/splom/marker/colorbar/_tickformatstop.py index ee502f046c..3833cd78a5 100644 --- a/plotly/graph_objs/splom/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/splom/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/marker/colorbar/_title.py b/plotly/graph_objs/splom/marker/colorbar/_title.py index 8a5f4da008..58b24f474e 100644 --- a/plotly/graph_objs/splom/marker/colorbar/_title.py +++ b/plotly/graph_objs/splom/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/marker/colorbar/title/_font.py b/plotly/graph_objs/splom/marker/colorbar/title/_font.py index dff66c6bf3..9ae61f40d3 100644 --- a/plotly/graph_objs/splom/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/splom/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/selected/_marker.py b/plotly/graph_objs/splom/selected/_marker.py index ad0dce97d6..fb903974e8 100644 --- a/plotly/graph_objs/splom/selected/_marker.py +++ b/plotly/graph_objs/splom/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/splom/unselected/_marker.py b/plotly/graph_objs/splom/unselected/_marker.py index 470535680b..943797e025 100644 --- a/plotly/graph_objs/splom/unselected/_marker.py +++ b/plotly/graph_objs/splom/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/streamtube/_colorbar.py b/plotly/graph_objs/streamtube/_colorbar.py index f3522ed983..cc6931142e 100644 --- a/plotly/graph_objs/streamtube/_colorbar.py +++ b/plotly/graph_objs/streamtube/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -853,7 +856,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -894,7 +897,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1395,55 +1398,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/streamtube/_hoverlabel.py b/plotly/graph_objs/streamtube/_hoverlabel.py index 85fb35d07e..302b33e735 100644 --- a/plotly/graph_objs/streamtube/_hoverlabel.py +++ b/plotly/graph_objs/streamtube/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/streamtube/_legendgrouptitle.py b/plotly/graph_objs/streamtube/_legendgrouptitle.py index 930bca9ff0..e31ee019b4 100644 --- a/plotly/graph_objs/streamtube/_legendgrouptitle.py +++ b/plotly/graph_objs/streamtube/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/streamtube/_lighting.py b/plotly/graph_objs/streamtube/_lighting.py index 09ece54dc1..1ccb1fff32 100644 --- a/plotly/graph_objs/streamtube/_lighting.py +++ b/plotly/graph_objs/streamtube/_lighting.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -191,13 +194,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - ambient=None, - diffuse=None, - facenormalsepsilon=None, - fresnel=None, - roughness=None, - specular=None, - vertexnormalsepsilon=None, + ambient: int|float|None = None, + diffuse: int|float|None = None, + facenormalsepsilon: int|float|None = None, + fresnel: int|float|None = None, + roughness: int|float|None = None, + specular: int|float|None = None, + vertexnormalsepsilon: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/streamtube/_lightposition.py b/plotly/graph_objs/streamtube/_lightposition.py index 11efaeee78..39b877820d 100644 --- a/plotly/graph_objs/streamtube/_lightposition.py +++ b/plotly/graph_objs/streamtube/_lightposition.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -89,9 +92,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float|None = None, + y: int|float|None = None, + z: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/streamtube/_starts.py b/plotly/graph_objs/streamtube/_starts.py index 2810957371..6535a6bf95 100644 --- a/plotly/graph_objs/streamtube/_starts.py +++ b/plotly/graph_objs/streamtube/_starts.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -25,7 +28,7 @@ def x(self): Returns ------- - numpy.ndarray + NDArray """ return self['x'] @@ -66,7 +69,7 @@ def y(self): Returns ------- - numpy.ndarray + NDArray """ return self['y'] @@ -107,7 +110,7 @@ def z(self): Returns ------- - numpy.ndarray + NDArray """ return self['z'] @@ -161,12 +164,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - xsrc=None, - y=None, - ysrc=None, - z=None, - zsrc=None, + x: NDArray|None = None, + xsrc: str|None = None, + y: NDArray|None = None, + ysrc: str|None = None, + z: NDArray|None = None, + zsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/streamtube/_stream.py b/plotly/graph_objs/streamtube/_stream.py index c60df08b78..3b7426da7e 100644 --- a/plotly/graph_objs/streamtube/_stream.py +++ b/plotly/graph_objs/streamtube/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/streamtube/colorbar/_tickfont.py b/plotly/graph_objs/streamtube/colorbar/_tickfont.py index cc5243466b..8d3b884449 100644 --- a/plotly/graph_objs/streamtube/colorbar/_tickfont.py +++ b/plotly/graph_objs/streamtube/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/streamtube/colorbar/_tickformatstop.py b/plotly/graph_objs/streamtube/colorbar/_tickformatstop.py index 7cca8cd87e..b40769d43a 100644 --- a/plotly/graph_objs/streamtube/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/streamtube/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/streamtube/colorbar/_title.py b/plotly/graph_objs/streamtube/colorbar/_title.py index a72650b7e0..0275042f77 100644 --- a/plotly/graph_objs/streamtube/colorbar/_title.py +++ b/plotly/graph_objs/streamtube/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/streamtube/colorbar/title/_font.py b/plotly/graph_objs/streamtube/colorbar/title/_font.py index 774d699bce..ed3c1a1ac1 100644 --- a/plotly/graph_objs/streamtube/colorbar/title/_font.py +++ b/plotly/graph_objs/streamtube/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/streamtube/hoverlabel/_font.py b/plotly/graph_objs/streamtube/hoverlabel/_font.py index 1bf30f9d64..7919f1ad52 100644 --- a/plotly/graph_objs/streamtube/hoverlabel/_font.py +++ b/plotly/graph_objs/streamtube/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/streamtube/legendgrouptitle/_font.py b/plotly/graph_objs/streamtube/legendgrouptitle/_font.py index 82cb45a7d2..6f0674203d 100644 --- a/plotly/graph_objs/streamtube/legendgrouptitle/_font.py +++ b/plotly/graph_objs/streamtube/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/_domain.py b/plotly/graph_objs/sunburst/_domain.py index 93c414c991..a523ec5835 100644 --- a/plotly/graph_objs/sunburst/_domain.py +++ b/plotly/graph_objs/sunburst/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/_hoverlabel.py b/plotly/graph_objs/sunburst/_hoverlabel.py index 22e15d5013..778f200302 100644 --- a/plotly/graph_objs/sunburst/_hoverlabel.py +++ b/plotly/graph_objs/sunburst/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/_insidetextfont.py b/plotly/graph_objs/sunburst/_insidetextfont.py index be40e6cc01..71c79dbc66 100644 --- a/plotly/graph_objs/sunburst/_insidetextfont.py +++ b/plotly/graph_objs/sunburst/_insidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/_leaf.py b/plotly/graph_objs/sunburst/_leaf.py index 4e1a525bc5..4f7f4151f1 100644 --- a/plotly/graph_objs/sunburst/_leaf.py +++ b/plotly/graph_objs/sunburst/_leaf.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, + opacity: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/_legendgrouptitle.py b/plotly/graph_objs/sunburst/_legendgrouptitle.py index a6fa58af54..49e6a7c3a2 100644 --- a/plotly/graph_objs/sunburst/_legendgrouptitle.py +++ b/plotly/graph_objs/sunburst/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/_marker.py b/plotly/graph_objs/sunburst/_marker.py index 0f71c08caa..0f94b369b6 100644 --- a/plotly/graph_objs/sunburst/_marker.py +++ b/plotly/graph_objs/sunburst/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -191,7 +194,7 @@ def colors(self): Returns ------- - numpy.ndarray + NDArray """ return self['colors'] @@ -448,20 +451,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colors=None, - colorscale=None, - colorssrc=None, - line=None, - pattern=None, - reversescale=None, - showscale=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colors: NDArray|None = None, + colorscale: str|None = None, + colorssrc: str|None = None, + line: None|None = None, + pattern: None|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/_outsidetextfont.py b/plotly/graph_objs/sunburst/_outsidetextfont.py index 09b0f95bb7..a6fcc2171c 100644 --- a/plotly/graph_objs/sunburst/_outsidetextfont.py +++ b/plotly/graph_objs/sunburst/_outsidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/_root.py b/plotly/graph_objs/sunburst/_root.py index 08f5f962c1..69fc484cfb 100644 --- a/plotly/graph_objs/sunburst/_root.py +++ b/plotly/graph_objs/sunburst/_root.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -50,7 +53,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/_stream.py b/plotly/graph_objs/sunburst/_stream.py index 2def2c93f2..8dc1e8966b 100644 --- a/plotly/graph_objs/sunburst/_stream.py +++ b/plotly/graph_objs/sunburst/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/_textfont.py b/plotly/graph_objs/sunburst/_textfont.py index 8212e60389..c1918b63b6 100644 --- a/plotly/graph_objs/sunburst/_textfont.py +++ b/plotly/graph_objs/sunburst/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/hoverlabel/_font.py b/plotly/graph_objs/sunburst/hoverlabel/_font.py index 30cb7b8e08..6b2ef9c664 100644 --- a/plotly/graph_objs/sunburst/hoverlabel/_font.py +++ b/plotly/graph_objs/sunburst/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/legendgrouptitle/_font.py b/plotly/graph_objs/sunburst/legendgrouptitle/_font.py index 8d5dfd4471..bd29d41733 100644 --- a/plotly/graph_objs/sunburst/legendgrouptitle/_font.py +++ b/plotly/graph_objs/sunburst/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/marker/_colorbar.py b/plotly/graph_objs/sunburst/marker/_colorbar.py index 9a3f0974f3..4fdb257dff 100644 --- a/plotly/graph_objs/sunburst/marker/_colorbar.py +++ b/plotly/graph_objs/sunburst/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/marker/_line.py b/plotly/graph_objs/sunburst/marker/_line.py index e5f28cec71..b4d06571ef 100644 --- a/plotly/graph_objs/sunburst/marker/_line.py +++ b/plotly/graph_objs/sunburst/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -30,7 +33,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -71,7 +74,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -119,10 +122,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str|None = None, + colorsrc: str|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/marker/_pattern.py b/plotly/graph_objs/sunburst/marker/_pattern.py index 1696ca0f6e..e0c286da26 100644 --- a/plotly/graph_objs/sunburst/marker/_pattern.py +++ b/plotly/graph_objs/sunburst/marker/_pattern.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -32,7 +35,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -80,7 +83,7 @@ def fgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['fgcolor'] @@ -166,7 +169,7 @@ def shape(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['shape'] @@ -208,7 +211,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -252,7 +255,7 @@ def solidity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['solidity'] @@ -334,18 +337,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bgcolorsrc=None, - fgcolor=None, - fgcolorsrc=None, - fgopacity=None, - fillmode=None, - shape=None, - shapesrc=None, - size=None, - sizesrc=None, - solidity=None, - soliditysrc=None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + fgcolor: str|None = None, + fgcolorsrc: str|None = None, + fgopacity: int|float|None = None, + fillmode: Any|None = None, + shape: Any|None = None, + shapesrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + solidity: int|float|None = None, + soliditysrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/marker/colorbar/_tickfont.py b/plotly/graph_objs/sunburst/marker/colorbar/_tickfont.py index 93e6fdfe49..38c9c1bd57 100644 --- a/plotly/graph_objs/sunburst/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/sunburst/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/sunburst/marker/colorbar/_tickformatstop.py index e37c88dab4..350b989638 100644 --- a/plotly/graph_objs/sunburst/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/sunburst/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/marker/colorbar/_title.py b/plotly/graph_objs/sunburst/marker/colorbar/_title.py index a1ff1d081e..a44a794487 100644 --- a/plotly/graph_objs/sunburst/marker/colorbar/_title.py +++ b/plotly/graph_objs/sunburst/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/sunburst/marker/colorbar/title/_font.py b/plotly/graph_objs/sunburst/marker/colorbar/title/_font.py index 9567079b5e..f36b79f4be 100644 --- a/plotly/graph_objs/sunburst/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/sunburst/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/_colorbar.py b/plotly/graph_objs/surface/_colorbar.py index c0bb0fb9d4..77312254cd 100644 --- a/plotly/graph_objs/surface/_colorbar.py +++ b/plotly/graph_objs/surface/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/_contours.py b/plotly/graph_objs/surface/_contours.py index 26f3c8580a..31b1c5d17b 100644 --- a/plotly/graph_objs/surface/_contours.py +++ b/plotly/graph_objs/surface/_contours.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -92,9 +95,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: None|None = None, + y: None|None = None, + z: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/_hoverlabel.py b/plotly/graph_objs/surface/_hoverlabel.py index 7d7ff80870..f2d83dfc91 100644 --- a/plotly/graph_objs/surface/_hoverlabel.py +++ b/plotly/graph_objs/surface/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/_legendgrouptitle.py b/plotly/graph_objs/surface/_legendgrouptitle.py index 2f1e8ae20f..daf140bfa2 100644 --- a/plotly/graph_objs/surface/_legendgrouptitle.py +++ b/plotly/graph_objs/surface/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/_lighting.py b/plotly/graph_objs/surface/_lighting.py index 18499de107..2c4f97778d 100644 --- a/plotly/graph_objs/surface/_lighting.py +++ b/plotly/graph_objs/surface/_lighting.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -143,11 +146,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - ambient=None, - diffuse=None, - fresnel=None, - roughness=None, - specular=None, + ambient: int|float|None = None, + diffuse: int|float|None = None, + fresnel: int|float|None = None, + roughness: int|float|None = None, + specular: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/_lightposition.py b/plotly/graph_objs/surface/_lightposition.py index f58da514a9..5de3491aac 100644 --- a/plotly/graph_objs/surface/_lightposition.py +++ b/plotly/graph_objs/surface/_lightposition.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -89,9 +92,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float|None = None, + y: int|float|None = None, + z: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/_stream.py b/plotly/graph_objs/surface/_stream.py index dfbae6f97d..ca314f7fbe 100644 --- a/plotly/graph_objs/surface/_stream.py +++ b/plotly/graph_objs/surface/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/colorbar/_tickfont.py b/plotly/graph_objs/surface/colorbar/_tickfont.py index 31f26d354e..34609d7cf9 100644 --- a/plotly/graph_objs/surface/colorbar/_tickfont.py +++ b/plotly/graph_objs/surface/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/colorbar/_tickformatstop.py b/plotly/graph_objs/surface/colorbar/_tickformatstop.py index 66c74d421c..468bd8fc2f 100644 --- a/plotly/graph_objs/surface/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/surface/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/colorbar/_title.py b/plotly/graph_objs/surface/colorbar/_title.py index f711de98fe..5fc5430595 100644 --- a/plotly/graph_objs/surface/colorbar/_title.py +++ b/plotly/graph_objs/surface/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/colorbar/title/_font.py b/plotly/graph_objs/surface/colorbar/title/_font.py index 7b31f28221..7fce66b475 100644 --- a/plotly/graph_objs/surface/colorbar/title/_font.py +++ b/plotly/graph_objs/surface/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/contours/_x.py b/plotly/graph_objs/surface/contours/_x.py index 908778a766..45f72672df 100644 --- a/plotly/graph_objs/surface/contours/_x.py +++ b/plotly/graph_objs/surface/contours/_x.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -283,17 +286,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - end=None, - highlight=None, - highlightcolor=None, - highlightwidth=None, - project=None, - show=None, - size=None, - start=None, - usecolormap=None, - width=None, + color: str|None = None, + end: int|float|None = None, + highlight: bool|None = None, + highlightcolor: str|None = None, + highlightwidth: int|float|None = None, + project: None|None = None, + show: bool|None = None, + size: int|float|None = None, + start: int|float|None = None, + usecolormap: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/contours/_y.py b/plotly/graph_objs/surface/contours/_y.py index 362d49a0dc..e91870b0b7 100644 --- a/plotly/graph_objs/surface/contours/_y.py +++ b/plotly/graph_objs/surface/contours/_y.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -283,17 +286,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - end=None, - highlight=None, - highlightcolor=None, - highlightwidth=None, - project=None, - show=None, - size=None, - start=None, - usecolormap=None, - width=None, + color: str|None = None, + end: int|float|None = None, + highlight: bool|None = None, + highlightcolor: str|None = None, + highlightwidth: int|float|None = None, + project: None|None = None, + show: bool|None = None, + size: int|float|None = None, + start: int|float|None = None, + usecolormap: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/contours/_z.py b/plotly/graph_objs/surface/contours/_z.py index 3196cd2bfc..b1185322a6 100644 --- a/plotly/graph_objs/surface/contours/_z.py +++ b/plotly/graph_objs/surface/contours/_z.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -283,17 +286,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - end=None, - highlight=None, - highlightcolor=None, - highlightwidth=None, - project=None, - show=None, - size=None, - start=None, - usecolormap=None, - width=None, + color: str|None = None, + end: int|float|None = None, + highlight: bool|None = None, + highlightcolor: str|None = None, + highlightwidth: int|float|None = None, + project: None|None = None, + show: bool|None = None, + size: int|float|None = None, + start: int|float|None = None, + usecolormap: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/contours/x/_project.py b/plotly/graph_objs/surface/contours/x/_project.py index 70068053b4..c09e9d4ba7 100644 --- a/plotly/graph_objs/surface/contours/x/_project.py +++ b/plotly/graph_objs/surface/contours/x/_project.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -107,9 +110,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: bool|None = None, + y: bool|None = None, + z: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/contours/y/_project.py b/plotly/graph_objs/surface/contours/y/_project.py index 88d7dc41e7..625f1c7f5f 100644 --- a/plotly/graph_objs/surface/contours/y/_project.py +++ b/plotly/graph_objs/surface/contours/y/_project.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -107,9 +110,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: bool|None = None, + y: bool|None = None, + z: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/contours/z/_project.py b/plotly/graph_objs/surface/contours/z/_project.py index 36ec06da1a..ca4a06f46b 100644 --- a/plotly/graph_objs/surface/contours/z/_project.py +++ b/plotly/graph_objs/surface/contours/z/_project.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -107,9 +110,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: bool|None = None, + y: bool|None = None, + z: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/hoverlabel/_font.py b/plotly/graph_objs/surface/hoverlabel/_font.py index 6586b53d53..28dd69a87b 100644 --- a/plotly/graph_objs/surface/hoverlabel/_font.py +++ b/plotly/graph_objs/surface/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/surface/legendgrouptitle/_font.py b/plotly/graph_objs/surface/legendgrouptitle/_font.py index e718dd2e4d..d1e320f440 100644 --- a/plotly/graph_objs/surface/legendgrouptitle/_font.py +++ b/plotly/graph_objs/surface/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/table/_cells.py b/plotly/graph_objs/table/_cells.py index 7f15aa2041..c0a5eb00e0 100644 --- a/plotly/graph_objs/table/_cells.py +++ b/plotly/graph_objs/table/_cells.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -29,7 +32,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -114,7 +117,7 @@ def format(self): Returns ------- - numpy.ndarray + NDArray """ return self['format'] @@ -197,7 +200,7 @@ def prefix(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['prefix'] @@ -239,7 +242,7 @@ def suffix(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['suffix'] @@ -282,7 +285,7 @@ def values(self): Returns ------- - numpy.ndarray + NDArray """ return self['values'] @@ -365,20 +368,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - fill=None, - font=None, - format=None, - formatsrc=None, - height=None, - line=None, - prefix=None, - prefixsrc=None, - suffix=None, - suffixsrc=None, - values=None, - valuessrc=None, + align: Any|None = None, + alignsrc: str|None = None, + fill: None|None = None, + font: None|None = None, + format: NDArray|None = None, + formatsrc: str|None = None, + height: int|float|None = None, + line: None|None = None, + prefix: str|None = None, + prefixsrc: str|None = None, + suffix: str|None = None, + suffixsrc: str|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/table/_domain.py b/plotly/graph_objs/table/_domain.py index e00af8914f..5032c02405 100644 --- a/plotly/graph_objs/table/_domain.py +++ b/plotly/graph_objs/table/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/table/_header.py b/plotly/graph_objs/table/_header.py index b1c0225fd3..018d984a10 100644 --- a/plotly/graph_objs/table/_header.py +++ b/plotly/graph_objs/table/_header.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -29,7 +32,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -114,7 +117,7 @@ def format(self): Returns ------- - numpy.ndarray + NDArray """ return self['format'] @@ -197,7 +200,7 @@ def prefix(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['prefix'] @@ -239,7 +242,7 @@ def suffix(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['suffix'] @@ -282,7 +285,7 @@ def values(self): Returns ------- - numpy.ndarray + NDArray """ return self['values'] @@ -365,20 +368,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - fill=None, - font=None, - format=None, - formatsrc=None, - height=None, - line=None, - prefix=None, - prefixsrc=None, - suffix=None, - suffixsrc=None, - values=None, - valuessrc=None, + align: Any|None = None, + alignsrc: str|None = None, + fill: None|None = None, + font: None|None = None, + format: NDArray|None = None, + formatsrc: str|None = None, + height: int|float|None = None, + line: None|None = None, + prefix: str|None = None, + prefixsrc: str|None = None, + suffix: str|None = None, + suffixsrc: str|None = None, + values: NDArray|None = None, + valuessrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/table/_hoverlabel.py b/plotly/graph_objs/table/_hoverlabel.py index bb96bda658..157a7a12e6 100644 --- a/plotly/graph_objs/table/_hoverlabel.py +++ b/plotly/graph_objs/table/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/table/_legendgrouptitle.py b/plotly/graph_objs/table/_legendgrouptitle.py index 433cc0f827..4e0cc6104e 100644 --- a/plotly/graph_objs/table/_legendgrouptitle.py +++ b/plotly/graph_objs/table/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/table/_stream.py b/plotly/graph_objs/table/_stream.py index 747d30d03c..ccca4c00d6 100644 --- a/plotly/graph_objs/table/_stream.py +++ b/plotly/graph_objs/table/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/table/cells/_fill.py b/plotly/graph_objs/table/cells/_fill.py index 96d81076aa..28ab61bf65 100644 --- a/plotly/graph_objs/table/cells/_fill.py +++ b/plotly/graph_objs/table/cells/_fill.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -30,7 +33,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,8 +75,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, + color: str|None = None, + colorsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/table/cells/_font.py b/plotly/graph_objs/table/cells/_font.py index 99f65a1e05..272dfdefa3 100644 --- a/plotly/graph_objs/table/cells/_font.py +++ b/plotly/graph_objs/table/cells/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/table/cells/_line.py b/plotly/graph_objs/table/cells/_line.py index 68dffe20cb..e38b46a324 100644 --- a/plotly/graph_objs/table/cells/_line.py +++ b/plotly/graph_objs/table/cells/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -66,7 +69,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -112,10 +115,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str|None = None, + colorsrc: str|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/table/header/_fill.py b/plotly/graph_objs/table/header/_fill.py index 57f3964228..a0c2897631 100644 --- a/plotly/graph_objs/table/header/_fill.py +++ b/plotly/graph_objs/table/header/_fill.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -30,7 +33,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,8 +75,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, + color: str|None = None, + colorsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/table/header/_font.py b/plotly/graph_objs/table/header/_font.py index 6ade2beb99..5e4e302929 100644 --- a/plotly/graph_objs/table/header/_font.py +++ b/plotly/graph_objs/table/header/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/table/header/_line.py b/plotly/graph_objs/table/header/_line.py index d23a20db35..4c59421320 100644 --- a/plotly/graph_objs/table/header/_line.py +++ b/plotly/graph_objs/table/header/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -66,7 +69,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -112,10 +115,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str|None = None, + colorsrc: str|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/table/hoverlabel/_font.py b/plotly/graph_objs/table/hoverlabel/_font.py index 7eaa8401cb..4b0424a4ce 100644 --- a/plotly/graph_objs/table/hoverlabel/_font.py +++ b/plotly/graph_objs/table/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/table/legendgrouptitle/_font.py b/plotly/graph_objs/table/legendgrouptitle/_font.py index 7028c93662..5f01d896ff 100644 --- a/plotly/graph_objs/table/legendgrouptitle/_font.py +++ b/plotly/graph_objs/table/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/_domain.py b/plotly/graph_objs/treemap/_domain.py index eed13a5ccd..180e7b7861 100644 --- a/plotly/graph_objs/treemap/_domain.py +++ b/plotly/graph_objs/treemap/_domain.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int|None = None, + row: int|None = None, + x: list|None = None, + y: list|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/_hoverlabel.py b/plotly/graph_objs/treemap/_hoverlabel.py index f4304e7325..c5fc20c240 100644 --- a/plotly/graph_objs/treemap/_hoverlabel.py +++ b/plotly/graph_objs/treemap/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/_insidetextfont.py b/plotly/graph_objs/treemap/_insidetextfont.py index f03fc79bf2..ba29e10dac 100644 --- a/plotly/graph_objs/treemap/_insidetextfont.py +++ b/plotly/graph_objs/treemap/_insidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/_legendgrouptitle.py b/plotly/graph_objs/treemap/_legendgrouptitle.py index d8fd6ddc52..e553998852 100644 --- a/plotly/graph_objs/treemap/_legendgrouptitle.py +++ b/plotly/graph_objs/treemap/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/_marker.py b/plotly/graph_objs/treemap/_marker.py index 3fa589e8a3..c90e8a907e 100644 --- a/plotly/graph_objs/treemap/_marker.py +++ b/plotly/graph_objs/treemap/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -191,7 +194,7 @@ def colors(self): Returns ------- - numpy.ndarray + NDArray """ return self['colors'] @@ -532,23 +535,23 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, - colorbar=None, - colors=None, - colorscale=None, - colorssrc=None, - cornerradius=None, - depthfade=None, - line=None, - pad=None, - pattern=None, - reversescale=None, - showscale=None, + autocolorscale: bool|None = None, + cauto: bool|None = None, + cmax: int|float|None = None, + cmid: int|float|None = None, + cmin: int|float|None = None, + coloraxis: str|None = None, + colorbar: None|None = None, + colors: NDArray|None = None, + colorscale: str|None = None, + colorssrc: str|None = None, + cornerradius: int|float|None = None, + depthfade: Any|None = None, + line: None|None = None, + pad: None|None = None, + pattern: None|None = None, + reversescale: bool|None = None, + showscale: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/_outsidetextfont.py b/plotly/graph_objs/treemap/_outsidetextfont.py index b1075b4569..7c3a07ded8 100644 --- a/plotly/graph_objs/treemap/_outsidetextfont.py +++ b/plotly/graph_objs/treemap/_outsidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/_pathbar.py b/plotly/graph_objs/treemap/_pathbar.py index ece8a5e30b..102531ba6c 100644 --- a/plotly/graph_objs/treemap/_pathbar.py +++ b/plotly/graph_objs/treemap/_pathbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -145,11 +148,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - edgeshape=None, - side=None, - textfont=None, - thickness=None, - visible=None, + edgeshape: Any|None = None, + side: Any|None = None, + textfont: None|None = None, + thickness: int|float|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/_root.py b/plotly/graph_objs/treemap/_root.py index d6f719422d..5a5e62d757 100644 --- a/plotly/graph_objs/treemap/_root.py +++ b/plotly/graph_objs/treemap/_root.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -50,7 +53,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/_stream.py b/plotly/graph_objs/treemap/_stream.py index a341fd350f..66c0b9d7c3 100644 --- a/plotly/graph_objs/treemap/_stream.py +++ b/plotly/graph_objs/treemap/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/_textfont.py b/plotly/graph_objs/treemap/_textfont.py index 860c8dd2a9..88657a7981 100644 --- a/plotly/graph_objs/treemap/_textfont.py +++ b/plotly/graph_objs/treemap/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/_tiling.py b/plotly/graph_objs/treemap/_tiling.py index 3bf0dbcb74..561e02544d 100644 --- a/plotly/graph_objs/treemap/_tiling.py +++ b/plotly/graph_objs/treemap/_tiling.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -140,10 +143,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - flip=None, - packing=None, - pad=None, - squarifyratio=None, + flip: Any|None = None, + packing: Any|None = None, + pad: int|float|None = None, + squarifyratio: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/hoverlabel/_font.py b/plotly/graph_objs/treemap/hoverlabel/_font.py index aa25d49c7a..2b3b0e4c0b 100644 --- a/plotly/graph_objs/treemap/hoverlabel/_font.py +++ b/plotly/graph_objs/treemap/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/legendgrouptitle/_font.py b/plotly/graph_objs/treemap/legendgrouptitle/_font.py index 7296d30434..48777ce152 100644 --- a/plotly/graph_objs/treemap/legendgrouptitle/_font.py +++ b/plotly/graph_objs/treemap/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/marker/_colorbar.py b/plotly/graph_objs/treemap/marker/_colorbar.py index e2c1cf9db2..196ea886d9 100644 --- a/plotly/graph_objs/treemap/marker/_colorbar.py +++ b/plotly/graph_objs/treemap/marker/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/marker/_line.py b/plotly/graph_objs/treemap/marker/_line.py index 4e3eea8190..b30adf2212 100644 --- a/plotly/graph_objs/treemap/marker/_line.py +++ b/plotly/graph_objs/treemap/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -30,7 +33,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -71,7 +74,7 @@ def width(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['width'] @@ -119,10 +122,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str|None = None, + colorsrc: str|None = None, + width: int|float|None = None, + widthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/marker/_pad.py b/plotly/graph_objs/treemap/marker/_pad.py index 28aee358e3..a2c90f47bc 100644 --- a/plotly/graph_objs/treemap/marker/_pad.py +++ b/plotly/graph_objs/treemap/marker/_pad.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -108,10 +111,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - b=None, - l=None, - r=None, - t=None, + b: int|float|None = None, + l: int|float|None = None, + r: int|float|None = None, + t: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/marker/_pattern.py b/plotly/graph_objs/treemap/marker/_pattern.py index 8f8309e7e9..42a3a15c1e 100644 --- a/plotly/graph_objs/treemap/marker/_pattern.py +++ b/plotly/graph_objs/treemap/marker/_pattern.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -32,7 +35,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -80,7 +83,7 @@ def fgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['fgcolor'] @@ -166,7 +169,7 @@ def shape(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['shape'] @@ -208,7 +211,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -252,7 +255,7 @@ def solidity(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['solidity'] @@ -334,18 +337,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bgcolorsrc=None, - fgcolor=None, - fgcolorsrc=None, - fgopacity=None, - fillmode=None, - shape=None, - shapesrc=None, - size=None, - sizesrc=None, - solidity=None, - soliditysrc=None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + fgcolor: str|None = None, + fgcolorsrc: str|None = None, + fgopacity: int|float|None = None, + fillmode: Any|None = None, + shape: Any|None = None, + shapesrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + solidity: int|float|None = None, + soliditysrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/marker/colorbar/_tickfont.py b/plotly/graph_objs/treemap/marker/colorbar/_tickfont.py index acdbc609c2..51cbeaf89f 100644 --- a/plotly/graph_objs/treemap/marker/colorbar/_tickfont.py +++ b/plotly/graph_objs/treemap/marker/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/treemap/marker/colorbar/_tickformatstop.py index b069a5bc32..c92d80a02a 100644 --- a/plotly/graph_objs/treemap/marker/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/treemap/marker/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/marker/colorbar/_title.py b/plotly/graph_objs/treemap/marker/colorbar/_title.py index 4935aa8bcd..815d9a9f06 100644 --- a/plotly/graph_objs/treemap/marker/colorbar/_title.py +++ b/plotly/graph_objs/treemap/marker/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/marker/colorbar/title/_font.py b/plotly/graph_objs/treemap/marker/colorbar/title/_font.py index d7992aed95..6104c4327c 100644 --- a/plotly/graph_objs/treemap/marker/colorbar/title/_font.py +++ b/plotly/graph_objs/treemap/marker/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/treemap/pathbar/_textfont.py b/plotly/graph_objs/treemap/pathbar/_textfont.py index 9dfc568176..2fb7bcd40b 100644 --- a/plotly/graph_objs/treemap/pathbar/_textfont.py +++ b/plotly/graph_objs/treemap/pathbar/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/violin/_box.py b/plotly/graph_objs/violin/_box.py index 1ee906a6ed..43f578c88e 100644 --- a/plotly/graph_objs/violin/_box.py +++ b/plotly/graph_objs/violin/_box.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -120,10 +123,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fillcolor=None, - line=None, - visible=None, - width=None, + fillcolor: str|None = None, + line: None|None = None, + visible: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/violin/_hoverlabel.py b/plotly/graph_objs/violin/_hoverlabel.py index 6c39ed6382..71739382e2 100644 --- a/plotly/graph_objs/violin/_hoverlabel.py +++ b/plotly/graph_objs/violin/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/violin/_legendgrouptitle.py b/plotly/graph_objs/violin/_legendgrouptitle.py index fc0ae83496..e42f55c7b4 100644 --- a/plotly/graph_objs/violin/_legendgrouptitle.py +++ b/plotly/graph_objs/violin/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/violin/_line.py b/plotly/graph_objs/violin/_line.py index c656092c78..70249caea4 100644 --- a/plotly/graph_objs/violin/_line.py +++ b/plotly/graph_objs/violin/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/violin/_marker.py b/plotly/graph_objs/violin/_marker.py index bffcab2e03..a69e90fccd 100644 --- a/plotly/graph_objs/violin/_marker.py +++ b/plotly/graph_objs/violin/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -289,13 +292,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - angle=None, - color=None, - line=None, - opacity=None, - outliercolor=None, - size=None, - symbol=None, + angle: int|float|None = None, + color: str|None = None, + line: None|None = None, + opacity: int|float|None = None, + outliercolor: str|None = None, + size: int|float|None = None, + symbol: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/violin/_meanline.py b/plotly/graph_objs/violin/_meanline.py index f5b8dc8e87..d1e96f0061 100644 --- a/plotly/graph_objs/violin/_meanline.py +++ b/plotly/graph_objs/violin/_meanline.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -97,9 +100,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - visible=None, - width=None, + color: str|None = None, + visible: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/violin/_selected.py b/plotly/graph_objs/violin/_selected.py index 7583a9e66a..22a07ee7d9 100644 --- a/plotly/graph_objs/violin/_selected.py +++ b/plotly/graph_objs/violin/_selected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/violin/_stream.py b/plotly/graph_objs/violin/_stream.py index de41d4b0ce..150c70b528 100644 --- a/plotly/graph_objs/violin/_stream.py +++ b/plotly/graph_objs/violin/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/violin/_unselected.py b/plotly/graph_objs/violin/_unselected.py index 306f4b0c45..6a0e090376 100644 --- a/plotly/graph_objs/violin/_unselected.py +++ b/plotly/graph_objs/violin/_unselected.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/violin/box/_line.py b/plotly/graph_objs/violin/box/_line.py index 1cf14b4356..d09e923536 100644 --- a/plotly/graph_objs/violin/box/_line.py +++ b/plotly/graph_objs/violin/box/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/violin/hoverlabel/_font.py b/plotly/graph_objs/violin/hoverlabel/_font.py index 7ab387852a..bf97b9e1e0 100644 --- a/plotly/graph_objs/violin/hoverlabel/_font.py +++ b/plotly/graph_objs/violin/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/violin/legendgrouptitle/_font.py b/plotly/graph_objs/violin/legendgrouptitle/_font.py index 39a3fd5454..c5f108e67a 100644 --- a/plotly/graph_objs/violin/legendgrouptitle/_font.py +++ b/plotly/graph_objs/violin/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/violin/marker/_line.py b/plotly/graph_objs/violin/marker/_line.py index 5d1ab03674..4fe0d713ec 100644 --- a/plotly/graph_objs/violin/marker/_line.py +++ b/plotly/graph_objs/violin/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -128,10 +131,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - outliercolor=None, - outlierwidth=None, - width=None, + color: str|None = None, + outliercolor: str|None = None, + outlierwidth: int|float|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/violin/selected/_marker.py b/plotly/graph_objs/violin/selected/_marker.py index 45a10146e9..631a064670 100644 --- a/plotly/graph_objs/violin/selected/_marker.py +++ b/plotly/graph_objs/violin/selected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/violin/unselected/_marker.py b/plotly/graph_objs/violin/unselected/_marker.py index f2517c5529..9639fba4cf 100644 --- a/plotly/graph_objs/violin/unselected/_marker.py +++ b/plotly/graph_objs/violin/unselected/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str|None = None, + opacity: int|float|None = None, + size: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/_caps.py b/plotly/graph_objs/volume/_caps.py index 12858d2d54..240da40f20 100644 --- a/plotly/graph_objs/volume/_caps.py +++ b/plotly/graph_objs/volume/_caps.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -92,9 +95,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: None|None = None, + y: None|None = None, + z: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/_colorbar.py b/plotly/graph_objs/volume/_colorbar.py index b65844bdd9..09575e0d06 100644 --- a/plotly/graph_objs/volume/_colorbar.py +++ b/plotly/graph_objs/volume/_colorbar.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -854,7 +857,7 @@ def ticktext(self): Returns ------- - numpy.ndarray + NDArray """ return self['ticktext'] @@ -895,7 +898,7 @@ def tickvals(self): Returns ------- - numpy.ndarray + NDArray """ return self['tickvals'] @@ -1396,55 +1399,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - dtick=None, - exponentformat=None, - labelalias=None, - len=None, - lenmode=None, - minexponent=None, - nticks=None, - orientation=None, - outlinecolor=None, - outlinewidth=None, - separatethousands=None, - showexponent=None, - showticklabels=None, - showtickprefix=None, - showticksuffix=None, - thickness=None, - thicknessmode=None, - tick0=None, - tickangle=None, - tickcolor=None, - tickfont=None, - tickformat=None, - tickformatstops=None, - tickformatstopdefaults=None, - ticklabeloverflow=None, - ticklabelposition=None, - ticklabelstep=None, - ticklen=None, - tickmode=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + bgcolor: str|None = None, + bordercolor: str|None = None, + borderwidth: int|float|None = None, + dtick: Any|None = None, + exponentformat: Any|None = None, + labelalias: Any|None = None, + len: int|float|None = None, + lenmode: Any|None = None, + minexponent: int|float|None = None, + nticks: int|None = None, + orientation: Any|None = None, + outlinecolor: str|None = None, + outlinewidth: int|float|None = None, + separatethousands: bool|None = None, + showexponent: Any|None = None, + showticklabels: bool|None = None, + showtickprefix: Any|None = None, + showticksuffix: Any|None = None, + thickness: int|float|None = None, + thicknessmode: Any|None = None, + tick0: Any|None = None, + tickangle: int|float|None = None, + tickcolor: str|None = None, + tickfont: None|None = None, + tickformat: str|None = None, + tickformatstops: None|None = None, + tickformatstopdefaults: None|None = None, + ticklabeloverflow: Any|None = None, + ticklabelposition: Any|None = None, + ticklabelstep: int|None = None, + ticklen: int|float|None = None, + tickmode: Any|None = None, + tickprefix: str|None = None, + ticks: Any|None = None, + ticksuffix: str|None = None, + ticktext: NDArray|None = None, + ticktextsrc: str|None = None, + tickvals: NDArray|None = None, + tickvalssrc: str|None = None, + tickwidth: int|float|None = None, + title: None|None = None, + x: int|float|None = None, + xanchor: Any|None = None, + xpad: int|float|None = None, + xref: Any|None = None, + y: int|float|None = None, + yanchor: Any|None = None, + ypad: int|float|None = None, + yref: Any|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/_contour.py b/plotly/graph_objs/volume/_contour.py index 0f330a6747..0b2227f149 100644 --- a/plotly/graph_objs/volume/_contour.py +++ b/plotly/graph_objs/volume/_contour.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -90,9 +93,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - show=None, - width=None, + color: str|None = None, + show: bool|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/_hoverlabel.py b/plotly/graph_objs/volume/_hoverlabel.py index ca3c604720..5f63451d1f 100644 --- a/plotly/graph_objs/volume/_hoverlabel.py +++ b/plotly/graph_objs/volume/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/_legendgrouptitle.py b/plotly/graph_objs/volume/_legendgrouptitle.py index 1319192490..2d3234a6d5 100644 --- a/plotly/graph_objs/volume/_legendgrouptitle.py +++ b/plotly/graph_objs/volume/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/_lighting.py b/plotly/graph_objs/volume/_lighting.py index 7d6b2afc25..af4ca4617e 100644 --- a/plotly/graph_objs/volume/_lighting.py +++ b/plotly/graph_objs/volume/_lighting.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -191,13 +194,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - ambient=None, - diffuse=None, - facenormalsepsilon=None, - fresnel=None, - roughness=None, - specular=None, - vertexnormalsepsilon=None, + ambient: int|float|None = None, + diffuse: int|float|None = None, + facenormalsepsilon: int|float|None = None, + fresnel: int|float|None = None, + roughness: int|float|None = None, + specular: int|float|None = None, + vertexnormalsepsilon: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/_lightposition.py b/plotly/graph_objs/volume/_lightposition.py index 943013c88f..32a33b169e 100644 --- a/plotly/graph_objs/volume/_lightposition.py +++ b/plotly/graph_objs/volume/_lightposition.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -89,9 +92,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float|None = None, + y: int|float|None = None, + z: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/_slices.py b/plotly/graph_objs/volume/_slices.py index 6f49e30d17..9b2f54e6ba 100644 --- a/plotly/graph_objs/volume/_slices.py +++ b/plotly/graph_objs/volume/_slices.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -92,9 +95,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: None|None = None, + y: None|None = None, + z: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/_spaceframe.py b/plotly/graph_objs/volume/_spaceframe.py index c3dd0ec67e..93d7714930 100644 --- a/plotly/graph_objs/volume/_spaceframe.py +++ b/plotly/graph_objs/volume/_spaceframe.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -75,8 +78,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - show=None, + fill: int|float|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/_stream.py b/plotly/graph_objs/volume/_stream.py index fc7e3ac8ea..8abaf632a5 100644 --- a/plotly/graph_objs/volume/_stream.py +++ b/plotly/graph_objs/volume/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/_surface.py b/plotly/graph_objs/volume/_surface.py index dec6014538..f3b26e3d9c 100644 --- a/plotly/graph_objs/volume/_surface.py +++ b/plotly/graph_objs/volume/_surface.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -138,10 +141,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - count=None, - fill=None, - pattern=None, - show=None, + count: int|None = None, + fill: int|float|None = None, + pattern: Any|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/caps/_x.py b/plotly/graph_objs/volume/caps/_x.py index 1c812976a6..5bea739446 100644 --- a/plotly/graph_objs/volume/caps/_x.py +++ b/plotly/graph_objs/volume/caps/_x.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -78,8 +81,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - show=None, + fill: int|float|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/caps/_y.py b/plotly/graph_objs/volume/caps/_y.py index 3efd18d9ce..a631dd6c5f 100644 --- a/plotly/graph_objs/volume/caps/_y.py +++ b/plotly/graph_objs/volume/caps/_y.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -78,8 +81,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - show=None, + fill: int|float|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/caps/_z.py b/plotly/graph_objs/volume/caps/_z.py index 949cd587cd..0595163bd5 100644 --- a/plotly/graph_objs/volume/caps/_z.py +++ b/plotly/graph_objs/volume/caps/_z.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -78,8 +81,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - show=None, + fill: int|float|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/colorbar/_tickfont.py b/plotly/graph_objs/volume/colorbar/_tickfont.py index 94e4694554..1c29c18cd7 100644 --- a/plotly/graph_objs/volume/colorbar/_tickfont.py +++ b/plotly/graph_objs/volume/colorbar/_tickfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/colorbar/_tickformatstop.py b/plotly/graph_objs/volume/colorbar/_tickformatstop.py index 86834e6842..60b76dcfa5 100644 --- a/plotly/graph_objs/volume/colorbar/_tickformatstop.py +++ b/plotly/graph_objs/volume/colorbar/_tickformatstop.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -173,11 +176,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list|None = None, + enabled: bool|None = None, + name: str|None = None, + templateitemname: str|None = None, + value: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/colorbar/_title.py b/plotly/graph_objs/volume/colorbar/_title.py index d6586154e9..42a85dd39a 100644 --- a/plotly/graph_objs/volume/colorbar/_title.py +++ b/plotly/graph_objs/volume/colorbar/_title.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -96,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - side=None, - text=None, + font: None|None = None, + side: Any|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/colorbar/title/_font.py b/plotly/graph_objs/volume/colorbar/title/_font.py index 5525a40b38..b2fd4d48a6 100644 --- a/plotly/graph_objs/volume/colorbar/title/_font.py +++ b/plotly/graph_objs/volume/colorbar/title/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/hoverlabel/_font.py b/plotly/graph_objs/volume/hoverlabel/_font.py index 5417059ca4..19b7ac0333 100644 --- a/plotly/graph_objs/volume/hoverlabel/_font.py +++ b/plotly/graph_objs/volume/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/legendgrouptitle/_font.py b/plotly/graph_objs/volume/legendgrouptitle/_font.py index 7ff35a3cdf..b70f6047a5 100644 --- a/plotly/graph_objs/volume/legendgrouptitle/_font.py +++ b/plotly/graph_objs/volume/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/slices/_x.py b/plotly/graph_objs/volume/slices/_x.py index a5956114df..c0acd93cac 100644 --- a/plotly/graph_objs/volume/slices/_x.py +++ b/plotly/graph_objs/volume/slices/_x.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -49,7 +52,7 @@ def locations(self): Returns ------- - numpy.ndarray + NDArray """ return self['locations'] @@ -123,10 +126,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - locations=None, - locationssrc=None, - show=None, + fill: int|float|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/slices/_y.py b/plotly/graph_objs/volume/slices/_y.py index 0c8f937f91..dede3ba0e7 100644 --- a/plotly/graph_objs/volume/slices/_y.py +++ b/plotly/graph_objs/volume/slices/_y.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -49,7 +52,7 @@ def locations(self): Returns ------- - numpy.ndarray + NDArray """ return self['locations'] @@ -123,10 +126,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - locations=None, - locationssrc=None, - show=None, + fill: int|float|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/volume/slices/_z.py b/plotly/graph_objs/volume/slices/_z.py index 3b294d4441..725de12795 100644 --- a/plotly/graph_objs/volume/slices/_z.py +++ b/plotly/graph_objs/volume/slices/_z.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -49,7 +52,7 @@ def locations(self): Returns ------- - numpy.ndarray + NDArray """ return self['locations'] @@ -123,10 +126,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - locations=None, - locationssrc=None, - show=None, + fill: int|float|None = None, + locations: NDArray|None = None, + locationssrc: str|None = None, + show: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/_connector.py b/plotly/graph_objs/waterfall/_connector.py index 1d91a57a8f..4729764b9e 100644 --- a/plotly/graph_objs/waterfall/_connector.py +++ b/plotly/graph_objs/waterfall/_connector.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -89,9 +92,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - line=None, - mode=None, - visible=None, + line: None|None = None, + mode: Any|None = None, + visible: bool|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/_decreasing.py b/plotly/graph_objs/waterfall/_decreasing.py index 1e50f0249c..e989d52463 100644 --- a/plotly/graph_objs/waterfall/_decreasing.py +++ b/plotly/graph_objs/waterfall/_decreasing.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/_hoverlabel.py b/plotly/graph_objs/waterfall/_hoverlabel.py index 35fbc76f42..607a411e0f 100644 --- a/plotly/graph_objs/waterfall/_hoverlabel.py +++ b/plotly/graph_objs/waterfall/_hoverlabel.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -28,7 +31,7 @@ def align(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['align'] @@ -73,7 +76,7 @@ def bgcolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bgcolor'] @@ -118,7 +121,7 @@ def bordercolor(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['bordercolor'] @@ -189,7 +192,7 @@ def namelength(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['namelength'] @@ -258,15 +261,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, - font=None, - namelength=None, - namelengthsrc=None, + align: Any|None = None, + alignsrc: str|None = None, + bgcolor: str|None = None, + bgcolorsrc: str|None = None, + bordercolor: str|None = None, + bordercolorsrc: str|None = None, + font: None|None = None, + namelength: int|None = None, + namelengthsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/_increasing.py b/plotly/graph_objs/waterfall/_increasing.py index b4c8f1b26d..862b82d994 100644 --- a/plotly/graph_objs/waterfall/_increasing.py +++ b/plotly/graph_objs/waterfall/_increasing.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/_insidetextfont.py b/plotly/graph_objs/waterfall/_insidetextfont.py index a7cfb7c395..93230d3898 100644 --- a/plotly/graph_objs/waterfall/_insidetextfont.py +++ b/plotly/graph_objs/waterfall/_insidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/_legendgrouptitle.py b/plotly/graph_objs/waterfall/_legendgrouptitle.py index 77ef57cbb8..9e0e27feaf 100644 --- a/plotly/graph_objs/waterfall/_legendgrouptitle.py +++ b/plotly/graph_objs/waterfall/_legendgrouptitle.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - font=None, - text=None, + font: None|None = None, + text: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/_outsidetextfont.py b/plotly/graph_objs/waterfall/_outsidetextfont.py index 6bf59f1611..6c9ccf7e2a 100644 --- a/plotly/graph_objs/waterfall/_outsidetextfont.py +++ b/plotly/graph_objs/waterfall/_outsidetextfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/_stream.py b/plotly/graph_objs/waterfall/_stream.py index 86b6c63862..795cfdabe5 100644 --- a/plotly/graph_objs/waterfall/_stream.py +++ b/plotly/graph_objs/waterfall/_stream.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -73,8 +76,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float|None = None, + token: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/_textfont.py b/plotly/graph_objs/waterfall/_textfont.py index 9e34ca54e8..54a6c18061 100644 --- a/plotly/graph_objs/waterfall/_textfont.py +++ b/plotly/graph_objs/waterfall/_textfont.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/_totals.py b/plotly/graph_objs/waterfall/_totals.py index 1a15c76e14..12186d05be 100644 --- a/plotly/graph_objs/waterfall/_totals.py +++ b/plotly/graph_objs/waterfall/_totals.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -44,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - marker=None, + marker: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/connector/_line.py b/plotly/graph_objs/waterfall/connector/_line.py index 3d57f57d05..bb623d63d0 100644 --- a/plotly/graph_objs/waterfall/connector/_line.py +++ b/plotly/graph_objs/waterfall/connector/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -99,9 +102,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str|None = None, + dash: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/decreasing/_marker.py b/plotly/graph_objs/waterfall/decreasing/_marker.py index a7c7056038..2ebf13d477 100644 --- a/plotly/graph_objs/waterfall/decreasing/_marker.py +++ b/plotly/graph_objs/waterfall/decreasing/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -70,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - line=None, + color: str|None = None, + line: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/decreasing/marker/_line.py b/plotly/graph_objs/waterfall/decreasing/marker/_line.py index 1b58ef494c..a9424402dc 100644 --- a/plotly/graph_objs/waterfall/decreasing/marker/_line.py +++ b/plotly/graph_objs/waterfall/decreasing/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/hoverlabel/_font.py b/plotly/graph_objs/waterfall/hoverlabel/_font.py index fd352aea02..6fa19a151e 100644 --- a/plotly/graph_objs/waterfall/hoverlabel/_font.py +++ b/plotly/graph_objs/waterfall/hoverlabel/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -27,7 +30,7 @@ def color(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['color'] @@ -72,7 +75,7 @@ def family(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['family'] @@ -118,7 +121,7 @@ def lineposition(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['lineposition'] @@ -164,7 +167,7 @@ def shadow(self): Returns ------- - str|numpy.ndarray + str|NDArray """ return self['shadow'] @@ -203,7 +206,7 @@ def size(self): Returns ------- - int|float|numpy.ndarray + int|float|NDArray """ return self['size'] @@ -246,7 +249,7 @@ def style(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['style'] @@ -290,7 +293,7 @@ def textcase(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['textcase'] @@ -333,7 +336,7 @@ def variant(self): Returns ------- - Any|numpy.ndarray + Any|NDArray """ return self['variant'] @@ -376,7 +379,7 @@ def weight(self): Returns ------- - int|numpy.ndarray + int|NDArray """ return self['weight'] @@ -470,24 +473,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - family=None, - familysrc=None, - lineposition=None, - linepositionsrc=None, - shadow=None, - shadowsrc=None, - size=None, - sizesrc=None, - style=None, - stylesrc=None, - textcase=None, - textcasesrc=None, - variant=None, - variantsrc=None, - weight=None, - weightsrc=None, + color: str|None = None, + colorsrc: str|None = None, + family: str|None = None, + familysrc: str|None = None, + lineposition: Any|None = None, + linepositionsrc: str|None = None, + shadow: str|None = None, + shadowsrc: str|None = None, + size: int|float|None = None, + sizesrc: str|None = None, + style: Any|None = None, + stylesrc: str|None = None, + textcase: Any|None = None, + textcasesrc: str|None = None, + variant: Any|None = None, + variantsrc: str|None = None, + weight: int|None = None, + weightsrc: str|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/increasing/_marker.py b/plotly/graph_objs/waterfall/increasing/_marker.py index 8f040a10a4..7029636dd5 100644 --- a/plotly/graph_objs/waterfall/increasing/_marker.py +++ b/plotly/graph_objs/waterfall/increasing/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -70,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - line=None, + color: str|None = None, + line: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/increasing/marker/_line.py b/plotly/graph_objs/waterfall/increasing/marker/_line.py index 358d60aadf..c4ae2241ec 100644 --- a/plotly/graph_objs/waterfall/increasing/marker/_line.py +++ b/plotly/graph_objs/waterfall/increasing/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -68,8 +71,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str|None = None, + width: int|float|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/legendgrouptitle/_font.py b/plotly/graph_objs/waterfall/legendgrouptitle/_font.py index b5a6147130..8ebc1a9ca6 100644 --- a/plotly/graph_objs/waterfall/legendgrouptitle/_font.py +++ b/plotly/graph_objs/waterfall/legendgrouptitle/_font.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -253,15 +256,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - lineposition=None, - shadow=None, - size=None, - style=None, - textcase=None, - variant=None, - weight=None, + color: str|None = None, + family: str|None = None, + lineposition: Any|None = None, + shadow: str|None = None, + size: int|float|None = None, + style: Any|None = None, + textcase: Any|None = None, + variant: Any|None = None, + weight: int|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/totals/_marker.py b/plotly/graph_objs/waterfall/totals/_marker.py index 1351463084..ed5e03894a 100644 --- a/plotly/graph_objs/waterfall/totals/_marker.py +++ b/plotly/graph_objs/waterfall/totals/_marker.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -72,8 +75,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - line=None, + color: str|None = None, + line: None|None = None, **kwargs ): """ diff --git a/plotly/graph_objs/waterfall/totals/marker/_line.py b/plotly/graph_objs/waterfall/totals/marker/_line.py index 51839dc256..c46d7c912c 100644 --- a/plotly/graph_objs/waterfall/totals/marker/_line.py +++ b/plotly/graph_objs/waterfall/totals/marker/_line.py @@ -1,5 +1,8 @@ +from __future__ import annotations +from typing import Any +from numpy.typing import NDArray from plotly.basedatatypes import BaseTraceHierarchyType as _BaseTraceHierarchyType import copy as _copy @@ -70,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str|None = None, + width: int|float|None = None, **kwargs ): """