diff --git a/packages/python/plotly/codegen/datatypes.py b/packages/python/plotly/codegen/datatypes.py index 21a0935a29..a00b678df0 100644 --- a/packages/python/plotly/codegen/datatypes.py +++ b/packages/python/plotly/codegen/datatypes.py @@ -474,10 +474,14 @@ def add_constructor_params( {extra}=None""" ) - for i, subtype_node in enumerate(subtype_nodes): + for subtype_node in subtype_nodes: + try: + py_type = f": {get_typing_type(subtype_node.datatype)}" + except ValueError: # FIXME + py_type = "" buffer.write( f""", - {subtype_node.name_property}=None""" + {subtype_node.name_property}{py_type}=None""" ) for extra in append_extras: diff --git a/packages/python/plotly/plotly/graph_objs/_bar.py b/packages/python/plotly/plotly/graph_objs/_bar.py index da96f8476a..e2413a8271 100644 --- a/packages/python/plotly/plotly/graph_objs/_bar.py +++ b/packages/python/plotly/plotly/graph_objs/_bar.py @@ -2107,80 +2107,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, + alignmentgroup: str=None, + base: Any=None, + basesrc: str=None, + cliponaxis: bool=None, + constraintext: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, error_x=None, error_y=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + insidetextanchor: Any=None, insidetextfont=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetgroup=None, - offsetsrc=None, - opacity=None, - orientation=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + offset: int|float=None, + offsetgroup: str=None, + offsetsrc: str=None, + opacity: int|float=None, + orientation: Any=None, outsidetextfont=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, - textangle=None, + text: str=None, + textangle: int|float=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=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, + visible: Any=None, + width: int|float=None, + widthsrc: str=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + zorder: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_barpolar.py b/packages/python/plotly/plotly/graph_objs/_barpolar.py index 28c2580b6e..b79f9a38d6 100644 --- a/packages/python/plotly/plotly/graph_objs/_barpolar.py +++ b/packages/python/plotly/plotly/graph_objs/_barpolar.py @@ -1299,53 +1299,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, + base: Any=None, + basesrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dr: int|float=None, + dtheta: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetsrc=None, - opacity=None, - r=None, - r0=None, - rsrc=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + offset: int|float=None, + offsetsrc: str=None, + opacity: int|float=None, + r: numpy.ndarray=None, + r0: Any=None, + rsrc: str=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, - textsrc=None, - theta=None, - theta0=None, - thetasrc=None, - thetaunit=None, - uid=None, - uirevision=None, + subplot: str=None, + text: str=None, + textsrc: str=None, + theta: numpy.ndarray=None, + theta0: Any=None, + thetasrc: str=None, + thetaunit: Any=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - width=None, - widthsrc=None, + visible: Any=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_box.py b/packages/python/plotly/plotly/graph_objs/_box.py index 11e16d36ef..14d67d99a4 100644 --- a/packages/python/plotly/plotly/graph_objs/_box.py +++ b/packages/python/plotly/plotly/graph_objs/_box.py @@ -2454,92 +2454,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, + alignmentgroup: str=None, + boxmean: Any=None, + boxpoints: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - jitter=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + jitter: int|float=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - lowerfence=None, - lowerfencesrc=None, + lowerfence: numpy.ndarray=None, + lowerfencesrc: str=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, + mean: numpy.ndarray=None, + meansrc: str=None, + median: numpy.ndarray=None, + mediansrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + notched: bool=None, + notchspan: numpy.ndarray=None, + notchspansrc: str=None, + notchwidth: int|float=None, + offsetgroup: str=None, + opacity: int|float=None, + orientation: Any=None, + pointpos: int|float=None, + q1: numpy.ndarray=None, + q1src: str=None, + q3: numpy.ndarray=None, + q3src: str=None, + quartilemethod: Any=None, + sd: numpy.ndarray=None, + sdmultiple: int|float=None, + sdsrc: str=None, selected=None, - selectedpoints=None, - showlegend=None, - showwhiskers=None, - sizemode=None, + selectedpoints: Any=None, + showlegend: bool=None, + showwhiskers: bool=None, + sizemode: Any=None, stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=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, + upperfence: numpy.ndarray=None, + upperfencesrc: str=None, + visible: Any=None, + whiskerwidth: int|float=None, + width: int|float=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + zorder: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_candlestick.py b/packages/python/plotly/plotly/graph_objs/_candlestick.py index 72c5ae0432..aaa714bf6f 100644 --- a/packages/python/plotly/plotly/graph_objs/_candlestick.py +++ b/packages/python/plotly/plotly/graph_objs/_candlestick.py @@ -1354,55 +1354,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - close=None, - closesrc=None, - customdata=None, - customdatasrc=None, + close: numpy.ndarray=None, + closesrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, decreasing=None, - high=None, - highsrc=None, - hoverinfo=None, - hoverinfosrc=None, + high: numpy.ndarray=None, + highsrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, increasing=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - low=None, - lowsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - open=None, - opensrc=None, - selectedpoints=None, - showlegend=None, + low: numpy.ndarray=None, + lowsrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + open: numpy.ndarray=None, + opensrc: str=None, + selectedpoints: Any=None, + showlegend: bool=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, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + whiskerwidth: int|float=None, + x: numpy.ndarray=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + yaxis: str=None, + yhoverformat: str=None, + zorder: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_carpet.py b/packages/python/plotly/plotly/graph_objs/_carpet.py index 62f0dad7af..c10b8145f5 100644 --- a/packages/python/plotly/plotly/graph_objs/_carpet.py +++ b/packages/python/plotly/plotly/graph_objs/_carpet.py @@ -1011,43 +1011,43 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - a=None, - a0=None, + a: numpy.ndarray=None, + a0: int|float=None, aaxis=None, - asrc=None, - b=None, - b0=None, + asrc: str=None, + b: numpy.ndarray=None, + b0: int|float=None, baxis=None, - bsrc=None, - carpet=None, - cheaterslope=None, - color=None, - customdata=None, - customdatasrc=None, - da=None, - db=None, + bsrc: str=None, + carpet: str=None, + cheaterslope: int|float=None, + color: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + da: int|float=None, + db: int|float=None, font=None, - ids=None, - idssrc=None, - legend=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + legendrank: int|float=None, + legendwidth: int|float=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, stream=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xsrc=None, - y=None, - yaxis=None, - ysrc=None, - zorder=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xaxis: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yaxis: str=None, + ysrc: str=None, + zorder: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_choropleth.py b/packages/python/plotly/plotly/graph_objs/_choropleth.py index aabe66d14e..94574c14be 100644 --- a/packages/python/plotly/plotly/graph_objs/_choropleth.py +++ b/packages/python/plotly/plotly/graph_objs/_choropleth.py @@ -1411,54 +1411,54 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - coloraxis=None, + autocolorscale: bool=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geo=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + featureidkey: str=None, + geo: str=None, + geojson: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locationmode=None, - locations=None, - locationssrc=None, + legendrank: int|float=None, + legendwidth: int|float=None, + locationmode: Any=None, + locations: numpy.ndarray=None, + locationssrc: str=None, marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + reversescale: bool=None, selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, + selectedpoints: Any=None, + showlegend: bool=None, + showscale: bool=None, stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + visible: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_choroplethmap.py b/packages/python/plotly/plotly/graph_objs/_choroplethmap.py index 89d7aebab2..5c543b20c2 100644 --- a/packages/python/plotly/plotly/graph_objs/_choroplethmap.py +++ b/packages/python/plotly/plotly/graph_objs/_choroplethmap.py @@ -1407,54 +1407,54 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - below=None, - coloraxis=None, + autocolorscale: bool=None, + below: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + featureidkey: str=None, + geojson: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locations=None, - locationssrc=None, + legendrank: int|float=None, + legendwidth: int|float=None, + locations: numpy.ndarray=None, + locationssrc: str=None, marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + reversescale: bool=None, selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, + selectedpoints: Any=None, + showlegend: bool=None, + showscale: bool=None, stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + subplot: str=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + visible: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_choroplethmapbox.py b/packages/python/plotly/plotly/graph_objs/_choroplethmapbox.py index 2f652c88fc..f9139d7114 100644 --- a/packages/python/plotly/plotly/graph_objs/_choroplethmapbox.py +++ b/packages/python/plotly/plotly/graph_objs/_choroplethmapbox.py @@ -1417,54 +1417,54 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - below=None, - coloraxis=None, + autocolorscale: bool=None, + below: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + featureidkey: str=None, + geojson: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locations=None, - locationssrc=None, + legendrank: int|float=None, + legendwidth: int|float=None, + locations: numpy.ndarray=None, + locationssrc: str=None, marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + reversescale: bool=None, selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, + selectedpoints: Any=None, + showlegend: bool=None, + showscale: bool=None, stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + subplot: str=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + visible: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_cone.py b/packages/python/plotly/plotly/graph_objs/_cone.py index f83bdf76f8..f562c1e59c 100644 --- a/packages/python/plotly/plotly/graph_objs/_cone.py +++ b/packages/python/plotly/plotly/graph_objs/_cone.py @@ -1817,67 +1817,67 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - anchor=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, + anchor: Any=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=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, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=None, + sizemode: Any=None, + sizeref: int|float=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, + text: str=None, + textsrc: str=None, + u: numpy.ndarray=None, + uhoverformat: str=None, + uid: str=None, + uirevision: Any=None, + usrc: str=None, + v: numpy.ndarray=None, + vhoverformat: str=None, + visible: Any=None, + vsrc: str=None, + w: numpy.ndarray=None, + whoverformat: str=None, + wsrc: str=None, + x: numpy.ndarray=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zhoverformat: str=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_contour.py b/packages/python/plotly/plotly/graph_objs/_contour.py index 6ccd38143f..f44e0cb059 100644 --- a/packages/python/plotly/plotly/graph_objs/_contour.py +++ b/packages/python/plotly/plotly/graph_objs/_contour.py @@ -2117,79 +2117,79 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - autocontour=None, - coloraxis=None, + autocolorscale: bool=None, + autocontour: bool=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - connectgaps=None, + colorscale: str=None, + connectgaps: bool=None, contours=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoverongaps=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoverongaps: bool=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: numpy.ndarray=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - meta=None, - metasrc=None, - name=None, - ncontours=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + ncontours: int=None, + opacity: int|float=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=None, stream=None, - text=None, + text: numpy.ndarray=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, + textsrc: str=None, + texttemplate: str=None, + transpose: bool=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + xtype: Any=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + ytype: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zhoverformat: str=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zorder: int=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_contourcarpet.py b/packages/python/plotly/plotly/graph_objs/_contourcarpet.py index c3e132abe5..114b4669c9 100644 --- a/packages/python/plotly/plotly/graph_objs/_contourcarpet.py +++ b/packages/python/plotly/plotly/graph_objs/_contourcarpet.py @@ -1498,60 +1498,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, + a: numpy.ndarray=None, + a0: Any=None, + asrc: str=None, + atype: Any=None, + autocolorscale: bool=None, + autocontour: bool=None, + b: numpy.ndarray=None, + b0: Any=None, + bsrc: str=None, + btype: Any=None, + carpet: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, + colorscale: str=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, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + da: int|float=None, + db: int|float=None, + fillcolor: str=None, + hovertext: numpy.ndarray=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - meta=None, - metasrc=None, - name=None, - ncontours=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + ncontours: int=None, + opacity: int|float=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=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, + text: numpy.ndarray=None, + textsrc: str=None, + transpose: bool=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + xaxis: str=None, + yaxis: str=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zorder: int=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_densitymap.py b/packages/python/plotly/plotly/graph_objs/_densitymap.py index dde48ab8ab..ef69eaa764 100644 --- a/packages/python/plotly/plotly/graph_objs/_densitymap.py +++ b/packages/python/plotly/plotly/graph_objs/_densitymap.py @@ -1383,53 +1383,53 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - below=None, - coloraxis=None, + autocolorscale: bool=None, + below: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + lat: numpy.ndarray=None, + latsrc: str=None, + legend: str=None, + legendgroup: str=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, + legendrank: int|float=None, + legendwidth: int|float=None, + lon: numpy.ndarray=None, + lonsrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + radius: int|float=None, + radiussrc: str=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=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, + subplot: str=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_densitymapbox.py b/packages/python/plotly/plotly/graph_objs/_densitymapbox.py index 0a592515b6..dc39dc86f5 100644 --- a/packages/python/plotly/plotly/graph_objs/_densitymapbox.py +++ b/packages/python/plotly/plotly/graph_objs/_densitymapbox.py @@ -1393,53 +1393,53 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - below=None, - coloraxis=None, + autocolorscale: bool=None, + below: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + lat: numpy.ndarray=None, + latsrc: str=None, + legend: str=None, + legendgroup: str=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, + legendrank: int|float=None, + legendwidth: int|float=None, + lon: numpy.ndarray=None, + lonsrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + radius: int|float=None, + radiussrc: str=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=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, + subplot: str=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_figure.py b/packages/python/plotly/plotly/graph_objs/_figure.py index 160b6513d6..76600b0757 100644 --- a/packages/python/plotly/plotly/graph_objs/_figure.py +++ b/packages/python/plotly/plotly/graph_objs/_figure.py @@ -580,80 +580,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, + alignmentgroup: str=None, + base: Any=None, + basesrc: str=None, + cliponaxis: bool=None, + constraintext: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, error_x=None, error_y=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + insidetextanchor: Any=None, insidetextfont=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetgroup=None, - offsetsrc=None, - opacity=None, - orientation=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + offset: int|float=None, + offsetgroup: str=None, + offsetsrc: str=None, + opacity: int|float=None, + orientation: Any=None, outsidetextfont=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, - textangle=None, + text: str=None, + textangle: int|float=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=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, + visible: Any=None, + width: int|float=None, + widthsrc: str=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -1147,53 +1147,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, + base: Any=None, + basesrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dr: int|float=None, + dtheta: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetsrc=None, - opacity=None, - r=None, - r0=None, - rsrc=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + offset: int|float=None, + offsetsrc: str=None, + opacity: int|float=None, + r: numpy.ndarray=None, + r0: Any=None, + rsrc: str=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, - textsrc=None, - theta=None, - theta0=None, - thetasrc=None, - thetaunit=None, - uid=None, - uirevision=None, + subplot: str=None, + text: str=None, + textsrc: str=None, + theta: numpy.ndarray=None, + theta0: Any=None, + thetasrc: str=None, + thetaunit: Any=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - width=None, - widthsrc=None, + visible: Any=None, + width: int|float=None, + widthsrc: str=None, row=None, col=None, **kwargs @@ -1492,92 +1492,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, + alignmentgroup: str=None, + boxmean: Any=None, + boxpoints: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - jitter=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + jitter: int|float=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - lowerfence=None, - lowerfencesrc=None, + lowerfence: numpy.ndarray=None, + lowerfencesrc: str=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, + mean: numpy.ndarray=None, + meansrc: str=None, + median: numpy.ndarray=None, + mediansrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + notched: bool=None, + notchspan: numpy.ndarray=None, + notchspansrc: str=None, + notchwidth: int|float=None, + offsetgroup: str=None, + opacity: int|float=None, + orientation: Any=None, + pointpos: int|float=None, + q1: numpy.ndarray=None, + q1src: str=None, + q3: numpy.ndarray=None, + q3src: str=None, + quartilemethod: Any=None, + sd: numpy.ndarray=None, + sdmultiple: int|float=None, + sdsrc: str=None, selected=None, - selectedpoints=None, - showlegend=None, - showwhiskers=None, - sizemode=None, + selectedpoints: Any=None, + showlegend: bool=None, + showwhiskers: bool=None, + sizemode: Any=None, stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=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, + upperfence: numpy.ndarray=None, + upperfencesrc: str=None, + visible: Any=None, + whiskerwidth: int|float=None, + width: int|float=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -2176,55 +2176,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, + close: numpy.ndarray=None, + closesrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, decreasing=None, - high=None, - highsrc=None, - hoverinfo=None, - hoverinfosrc=None, + high: numpy.ndarray=None, + highsrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, increasing=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - low=None, - lowsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - open=None, - opensrc=None, - selectedpoints=None, - showlegend=None, + low: numpy.ndarray=None, + lowsrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + open: numpy.ndarray=None, + opensrc: str=None, + selectedpoints: Any=None, + showlegend: bool=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, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + whiskerwidth: int|float=None, + x: numpy.ndarray=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + yaxis: str=None, + yhoverformat: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -2550,43 +2550,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, + a: numpy.ndarray=None, + a0: int|float=None, aaxis=None, - asrc=None, - b=None, - b0=None, + asrc: str=None, + b: numpy.ndarray=None, + b0: int|float=None, baxis=None, - bsrc=None, - carpet=None, - cheaterslope=None, - color=None, - customdata=None, - customdatasrc=None, - da=None, - db=None, + bsrc: str=None, + carpet: str=None, + cheaterslope: int|float=None, + color: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + da: int|float=None, + db: int|float=None, font=None, - ids=None, - idssrc=None, - legend=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + legendrank: int|float=None, + legendwidth: int|float=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, stream=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xsrc=None, - y=None, - yaxis=None, - ysrc=None, - zorder=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xaxis: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yaxis: str=None, + ysrc: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -2835,54 +2835,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, + autocolorscale: bool=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geo=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + featureidkey: str=None, + geo: str=None, + geojson: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locationmode=None, - locations=None, - locationssrc=None, + legendrank: int|float=None, + legendwidth: int|float=None, + locationmode: Any=None, + locations: numpy.ndarray=None, + locationssrc: str=None, marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + reversescale: bool=None, selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, + selectedpoints: Any=None, + showlegend: bool=None, + showscale: bool=None, stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + visible: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -3218,54 +3218,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, + autocolorscale: bool=None, + below: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + featureidkey: str=None, + geojson: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locations=None, - locationssrc=None, + legendrank: int|float=None, + legendwidth: int|float=None, + locations: numpy.ndarray=None, + locationssrc: str=None, marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + reversescale: bool=None, selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, + selectedpoints: Any=None, + showlegend: bool=None, + showscale: bool=None, stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + subplot: str=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + visible: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -3599,54 +3599,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, + autocolorscale: bool=None, + below: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + featureidkey: str=None, + geojson: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locations=None, - locationssrc=None, + legendrank: int|float=None, + legendwidth: int|float=None, + locations: numpy.ndarray=None, + locationssrc: str=None, marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + reversescale: bool=None, selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, + selectedpoints: Any=None, + showlegend: bool=None, + showscale: bool=None, stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + subplot: str=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + visible: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -3989,67 +3989,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, + anchor: Any=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=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, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=None, + sizemode: Any=None, + sizeref: int|float=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, + text: str=None, + textsrc: str=None, + u: numpy.ndarray=None, + uhoverformat: str=None, + uid: str=None, + uirevision: Any=None, + usrc: str=None, + v: numpy.ndarray=None, + vhoverformat: str=None, + visible: Any=None, + vsrc: str=None, + w: numpy.ndarray=None, + whoverformat: str=None, + wsrc: str=None, + x: numpy.ndarray=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zhoverformat: str=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -4484,79 +4484,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, + autocolorscale: bool=None, + autocontour: bool=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - connectgaps=None, + colorscale: str=None, + connectgaps: bool=None, contours=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoverongaps=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoverongaps: bool=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: numpy.ndarray=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - meta=None, - metasrc=None, - name=None, - ncontours=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + ncontours: int=None, + opacity: int|float=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=None, stream=None, - text=None, + text: numpy.ndarray=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, + textsrc: str=None, + texttemplate: str=None, + transpose: bool=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + xtype: Any=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + ytype: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zhoverformat: str=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zorder: int=None, + zsrc: str=None, row=None, col=None, secondary_y=None, @@ -5058,60 +5058,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, + a: numpy.ndarray=None, + a0: Any=None, + asrc: str=None, + atype: Any=None, + autocolorscale: bool=None, + autocontour: bool=None, + b: numpy.ndarray=None, + b0: Any=None, + bsrc: str=None, + btype: Any=None, + carpet: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, + colorscale: str=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, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + da: int|float=None, + db: int|float=None, + fillcolor: str=None, + hovertext: numpy.ndarray=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - meta=None, - metasrc=None, - name=None, - ncontours=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + ncontours: int=None, + opacity: int|float=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=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, + text: numpy.ndarray=None, + textsrc: str=None, + transpose: bool=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + xaxis: str=None, + yaxis: str=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zorder: int=None, + zsrc: str=None, row=None, col=None, secondary_y=None, @@ -5453,53 +5453,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, + autocolorscale: bool=None, + below: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + lat: numpy.ndarray=None, + latsrc: str=None, + legend: str=None, + legendgroup: str=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, + legendrank: int|float=None, + legendwidth: int|float=None, + lon: numpy.ndarray=None, + lonsrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + radius: int|float=None, + radiussrc: str=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=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, + subplot: str=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -5830,53 +5830,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, + autocolorscale: bool=None, + below: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + lat: numpy.ndarray=None, + latsrc: str=None, + legend: str=None, + legendgroup: str=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, + legendrank: int|float=None, + legendwidth: int|float=None, + lon: numpy.ndarray=None, + lonsrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + radius: int|float=None, + radiussrc: str=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=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, + subplot: str=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -6216,72 +6216,72 @@ def add_densitymapbox(self, return self.add_trace( new_trace, row=row, col=col) def add_funnel(self, - alignmentgroup=None, - cliponaxis=None, + alignmentgroup: str=None, + cliponaxis: bool=None, connector=None, - constraintext=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, + constraintext: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + insidetextanchor: Any=None, insidetextfont=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetgroup=None, - opacity=None, - orientation=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + offset: int|float=None, + offsetgroup: str=None, + opacity: int|float=None, + orientation: Any=None, outsidetextfont=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, - textangle=None, + text: str=None, + textangle: int|float=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, + textinfo: Any=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + width: int|float=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -6751,52 +6751,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, + aspectratio: int|float=None, + baseratio: int|float=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dlabel: int|float=None, domain=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, insidetextfont=None, - label0=None, - labels=None, - labelssrc=None, - legend=None, - legendgroup=None, + label0: int|float=None, + labels: numpy.ndarray=None, + labelssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - scalegroup=None, - showlegend=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + scalegroup: str=None, + showlegend: bool=None, stream=None, - text=None, + text: numpy.ndarray=None, textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, + textinfo: Any=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, title=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + uid: str=None, + uirevision: Any=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: Any=None, row=None, col=None, **kwargs @@ -7111,77 +7111,77 @@ def add_funnelarea(self, return self.add_trace( new_trace, row=row, col=col) def add_heatmap(self, - autocolorscale=None, - coloraxis=None, + autocolorscale: bool=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoverongaps=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoverongaps: bool=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: numpy.ndarray=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, + legendrank: int|float=None, + legendwidth: int|float=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=None, stream=None, - text=None, + text: numpy.ndarray=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, + textsrc: str=None, + texttemplate: str=None, + transpose: bool=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xgap: int|float=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + xtype: Any=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + ygap: int|float=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + ytype: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zhoverformat: str=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zorder: int=None, + zsmooth: Any=None, + zsrc: str=None, row=None, col=None, secondary_y=None, @@ -7673,72 +7673,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, + alignmentgroup: str=None, + autobinx: bool=None, + autobiny: bool=None, + bingroup: str=None, + cliponaxis: bool=None, + constraintext: Any=None, cumulative=None, - customdata=None, - customdatasrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, error_x=None, error_y=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, + histfunc: Any=None, + histnorm: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + insidetextanchor: Any=None, insidetextfont=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - nbinsx=None, - nbinsy=None, - offsetgroup=None, - opacity=None, - orientation=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + nbinsx: int=None, + nbinsy: int=None, + offsetgroup: str=None, + opacity: int|float=None, + orientation: Any=None, outsidetextfont=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, - textangle=None, + text: str=None, + textangle: int|float=None, textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - uid=None, - uirevision=None, + textposition: Any=None, + textsrc: str=None, + texttemplate: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - x=None, - xaxis=None, + visible: Any=None, + x: numpy.ndarray=None, + xaxis: str=None, xbins=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, + xcalendar: Any=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yaxis: str=None, ybins=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - zorder=None, + ycalendar: Any=None, + yhoverformat: str=None, + ysrc: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -8213,69 +8213,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, + autobinx: bool=None, + autobiny: bool=None, + autocolorscale: bool=None, + bingroup: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + histfunc: Any=None, + histnorm: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - nbinsx=None, - nbinsy=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + nbinsx: int=None, + nbinsy: int=None, + opacity: int|float=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=None, stream=None, textfont=None, - texttemplate=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xbingroup=None, + texttemplate: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xaxis: str=None, + xbingroup: str=None, xbins=None, - xcalendar=None, - xgap=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, - ybingroup=None, + xcalendar: Any=None, + xgap: int|float=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yaxis: str=None, + ybingroup: str=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, + ycalendar: Any=None, + ygap: int|float=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zauto: bool=None, + zhoverformat: str=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsmooth: Any=None, + zsrc: str=None, row=None, col=None, secondary_y=None, @@ -8744,70 +8744,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, + autobinx: bool=None, + autobiny: bool=None, + autocolorscale: bool=None, + autocontour: bool=None, + bingroup: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, + colorscale: str=None, contours=None, - customdata=None, - customdatasrc=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + histfunc: Any=None, + histnorm: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=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, + meta: Any=None, + metasrc: str=None, + name: str=None, + nbinsx: int=None, + nbinsy: int=None, + ncontours: int=None, + opacity: int|float=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=None, stream=None, textfont=None, - texttemplate=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xbingroup=None, + texttemplate: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xaxis: str=None, + xbingroup: str=None, xbins=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, - ybingroup=None, + xcalendar: Any=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yaxis: str=None, + ybingroup: str=None, ybins=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - z=None, - zauto=None, - zhoverformat=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + ycalendar: Any=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zauto: bool=None, + zhoverformat: str=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, row=None, col=None, secondary_y=None, @@ -9290,55 +9290,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, + branchvalues: Any=None, + count: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, domain=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, insidetextfont=None, - labels=None, - labelssrc=None, + labels: numpy.ndarray=None, + labelssrc: str=None, leaf=None, - legend=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, + legendrank: int|float=None, + legendwidth: int|float=None, + level: Any=None, marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + maxdepth: int=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, outsidetextfont=None, - parents=None, - parentssrc=None, + parents: numpy.ndarray=None, + parentssrc: str=None, pathbar=None, root=None, - sort=None, + sort: bool=None, stream=None, - text=None, + text: numpy.ndarray=None, textfont=None, - textinfo=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, + textinfo: Any=None, + textposition: Any=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, tiling=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + uid: str=None, + uirevision: Any=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: Any=None, row=None, col=None, **kwargs @@ -9677,45 +9677,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, + colormodel: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: numpy.ndarray=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - source=None, + legendrank: int|float=None, + legendwidth: int|float=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + source: str=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, + text: numpy.ndarray=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x0: Any=None, + xaxis: str=None, + y0: Any=None, + yaxis: str=None, + z: numpy.ndarray=None, + zmax: list=None, + zmin: list=None, + zorder: int=None, + zsmooth: Any=None, + zsrc: str=None, row=None, col=None, secondary_y=None, @@ -10015,29 +10015,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, + align: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, delta=None, domain=None, gauge=None, - ids=None, - idssrc=None, - legend=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - mode=None, - name=None, + legendrank: int|float=None, + legendwidth: int|float=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, number=None, stream=None, title=None, - uid=None, - uirevision=None, - value=None, - visible=None, + uid: str=None, + uirevision: Any=None, + value: int|float=None, + visible: Any=None, row=None, col=None, **kwargs @@ -10213,66 +10213,66 @@ def add_indicator(self, return self.add_trace( new_trace, row=row, col=col) def add_isosurface(self, - autocolorscale=None, + autocolorscale: bool=None, caps=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colorscale=None, + colorscale: str=None, contour=None, - customdata=None, - customdatasrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + flatshading: bool=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - isomax=None, - isomin=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + isomax: int|float=None, + isomin: int|float=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, lighting=None, lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=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, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + value: numpy.ndarray=None, + valuehoverformat: str=None, + valuesrc: str=None, + visible: Any=None, + x: numpy.ndarray=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zhoverformat: str=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -10682,76 +10682,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, + alphahull: int|float=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, + colorscale: str=None, contour=None, - customdata=None, - customdatasrc=None, - delaunayaxis=None, - facecolor=None, - facecolorsrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + delaunayaxis: Any=None, + facecolor: numpy.ndarray=None, + facecolorsrc: str=None, + flatshading: bool=None, + hoverinfo: Any=None, + hoverinfosrc: str=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, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + i: numpy.ndarray=None, + ids: numpy.ndarray=None, + idssrc: str=None, + intensity: numpy.ndarray=None, + intensitymode: Any=None, + intensitysrc: str=None, + isrc: str=None, + j: numpy.ndarray=None, + jsrc: str=None, + k: numpy.ndarray=None, + ksrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, lighting=None, lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=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, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + vertexcolor: numpy.ndarray=None, + vertexcolorsrc: str=None, + visible: Any=None, + x: numpy.ndarray=None, + xcalendar: Any=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + ycalendar: Any=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zcalendar: Any=None, + zhoverformat: str=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -11241,55 +11241,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, + close: numpy.ndarray=None, + closesrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, decreasing=None, - high=None, - highsrc=None, - hoverinfo=None, - hoverinfosrc=None, + high: numpy.ndarray=None, + highsrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, increasing=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - low=None, - lowsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - open=None, - opensrc=None, - selectedpoints=None, - showlegend=None, + low: numpy.ndarray=None, + lowsrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + open: numpy.ndarray=None, + opensrc: str=None, + selectedpoints: Any=None, + showlegend: bool=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, + text: str=None, + textsrc: str=None, + tickwidth: int|float=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + yaxis: str=None, + yhoverformat: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -11614,29 +11614,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, + arrangement: Any=None, + bundlecolors: bool=None, + counts: int|float=None, + countssrc: str=None, dimensions=None, dimensiondefaults=None, domain=None, - hoverinfo=None, - hoveron=None, - hovertemplate=None, + hoverinfo: Any=None, + hoveron: Any=None, + hovertemplate: str=None, labelfont=None, legendgrouptitle=None, - legendwidth=None, + legendwidth: int|float=None, line=None, - meta=None, - metasrc=None, - name=None, - sortpaths=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + sortpaths: Any=None, stream=None, tickfont=None, - uid=None, - uirevision=None, - visible=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, row=None, col=None, **kwargs @@ -11836,31 +11836,31 @@ def add_parcats(self, return self.add_trace( new_trace, row=row, col=col) def add_parcoords(self, - customdata=None, - customdatasrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, dimensions=None, dimensiondefaults=None, domain=None, - ids=None, - idssrc=None, - labelangle=None, + ids: numpy.ndarray=None, + idssrc: str=None, + labelangle: int|float=None, labelfont=None, - labelside=None, - legend=None, + labelside: Any=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - meta=None, - metasrc=None, - name=None, + meta: Any=None, + metasrc: str=None, + name: str=None, rangefont=None, stream=None, tickfont=None, - uid=None, - uirevision=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, row=None, col=None, **kwargs @@ -12043,59 +12043,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, + automargin: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + direction: Any=None, + dlabel: int|float=None, domain=None, - hole=None, - hoverinfo=None, - hoverinfosrc=None, + hole: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, insidetextfont=None, - insidetextorientation=None, - label0=None, - labels=None, - labelssrc=None, - legend=None, - legendgroup=None, + insidetextorientation: Any=None, + label0: int|float=None, + labels: numpy.ndarray=None, + labelssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, outsidetextfont=None, - pull=None, - pullsrc=None, - rotation=None, - scalegroup=None, - showlegend=None, - sort=None, + pull: int|float=None, + pullsrc: str=None, + rotation: int|float=None, + scalegroup: str=None, + showlegend: bool=None, + sort: bool=None, stream=None, - text=None, + text: numpy.ndarray=None, textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, + textinfo: Any=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, title=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + uid: str=None, + uirevision: Any=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: Any=None, row=None, col=None, **kwargs @@ -12446,32 +12446,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, + arrangement: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, domain=None, - hoverinfo=None, + hoverinfo: Any=None, hoverlabel=None, - ids=None, - idssrc=None, - legend=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, link=None, - meta=None, - metasrc=None, - name=None, + meta: Any=None, + metasrc: str=None, + name: str=None, node=None, - orientation=None, - selectedpoints=None, + orientation: Any=None, + selectedpoints: Any=None, stream=None, textfont=None, - uid=None, - uirevision=None, - valueformat=None, - valuesuffix=None, - visible=None, + uid: str=None, + uirevision: Any=None, + valueformat: str=None, + valuesuffix: str=None, + visible: Any=None, row=None, col=None, **kwargs @@ -12666,80 +12666,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, + alignmentgroup: str=None, + cliponaxis: bool=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, error_x=None, error_y=None, - fill=None, - fillcolor=None, + fill: Any=None, + fillcolor: str=None, fillgradient=None, fillpattern=None, - groupnorm=None, - hoverinfo=None, - hoverinfosrc=None, + groupnorm: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - offsetgroup=None, - opacity=None, - orientation=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + offsetgroup: str=None, + opacity: int|float=None, + orientation: Any=None, selected=None, - selectedpoints=None, - showlegend=None, - stackgaps=None, - stackgroup=None, + selectedpoints: Any=None, + showlegend: bool=None, + stackgaps: Any=None, + stackgroup: str=None, stream=None, - text=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=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, + visible: Any=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -13282,61 +13282,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, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, error_x=None, error_y=None, error_z=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, projection=None, - scene=None, - showlegend=None, + scene: str=None, + showlegend: bool=None, stream=None, - surfaceaxis=None, - surfacecolor=None, - text=None, + surfaceaxis: Any=None, + surfacecolor: str=None, + text: str=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, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xcalendar: Any=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + ycalendar: Any=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zcalendar: Any=None, + zhoverformat: str=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -13716,56 +13716,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, + a: numpy.ndarray=None, + asrc: str=None, + b: numpy.ndarray=None, + bsrc: str=None, + carpet: str=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - xaxis=None, - yaxis=None, - zorder=None, + visible: Any=None, + xaxis: str=None, + yaxis: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -14126,57 +14126,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, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + featureidkey: str=None, + fill: Any=None, + fillcolor: str=None, + geo: str=None, + geojson: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + lat: numpy.ndarray=None, + latsrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - locationmode=None, - locations=None, - locationssrc=None, - lon=None, - lonsrc=None, + locationmode: Any=None, + locations: numpy.ndarray=None, + locationssrc: str=None, + lon: numpy.ndarray=None, + lonsrc: str=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, row=None, col=None, **kwargs @@ -14533,69 +14533,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, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, error_x=None, error_y=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=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, + visible: Any=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, row=None, col=None, secondary_y=None, @@ -15043,53 +15043,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, + below: str=None, cluster=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + lat: numpy.ndarray=None, + latsrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - lon=None, - lonsrc=None, + lon: numpy.ndarray=None, + lonsrc: str=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, + subplot: str=None, + text: str=None, textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, row=None, col=None, **kwargs @@ -15418,53 +15418,53 @@ def add_scattermap(self, return self.add_trace( new_trace, row=row, col=col) def add_scattermapbox(self, - below=None, + below: str=None, cluster=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + lat: numpy.ndarray=None, + latsrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - lon=None, - lonsrc=None, + lon: numpy.ndarray=None, + lonsrc: str=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, + subplot: str=None, + text: str=None, textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, row=None, col=None, **kwargs @@ -15802,59 +15802,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, + cliponaxis: bool=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dr: int|float=None, + dtheta: int|float=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - r=None, - r0=None, - rsrc=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, + r: numpy.ndarray=None, + r0: Any=None, + rsrc: str=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, + subplot: str=None, + text: str=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, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + theta: numpy.ndarray=None, + theta0: Any=None, + thetasrc: str=None, + thetaunit: Any=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, row=None, col=None, **kwargs @@ -16222,57 +16222,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, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dr: int|float=None, + dtheta: int|float=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - r=None, - r0=None, - rsrc=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, + r: numpy.ndarray=None, + r0: Any=None, + rsrc: str=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, + subplot: str=None, + text: str=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, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + theta: numpy.ndarray=None, + theta0: Any=None, + thetasrc: str=None, + thetaunit: Any=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, row=None, col=None, **kwargs @@ -16637,54 +16637,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, + cliponaxis: bool=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=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, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + imag: numpy.ndarray=None, + imagsrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - real=None, - realsrc=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, + real: numpy.ndarray=None, + realsrc: str=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, + subplot: str=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, row=None, col=None, **kwargs @@ -17034,57 +17034,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, + a: numpy.ndarray=None, + asrc: str=None, + b: numpy.ndarray=None, + bsrc: str=None, + c: numpy.ndarray=None, + cliponaxis: bool=None, + connectgaps: bool=None, + csrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - sum=None, - text=None, + subplot: str=None, + sum: int|float=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, row=None, col=None, **kwargs @@ -17453,46 +17453,46 @@ def add_scatterternary(self, return self.add_trace( new_trace, row=row, col=col) def add_splom(self, - customdata=None, - customdatasrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, diagonal=None, dimensions=None, dimensiondefaults=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, - showlowerhalf=None, - showupperhalf=None, + selectedpoints: Any=None, + showlegend: bool=None, + showlowerhalf: bool=None, + showupperhalf: bool=None, stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - xaxes=None, - xhoverformat=None, - yaxes=None, - yhoverformat=None, + visible: Any=None, + xaxes: list=None, + xhoverformat: str=None, + yaxes: list=None, + yhoverformat: str=None, row=None, col=None, **kwargs @@ -17800,65 +17800,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, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=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, + maxdisplayed: int=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=None, + sizeref: int|float=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, + text: str=None, + u: numpy.ndarray=None, + uhoverformat: str=None, + uid: str=None, + uirevision: Any=None, + usrc: str=None, + v: numpy.ndarray=None, + vhoverformat: str=None, + visible: Any=None, + vsrc: str=None, + w: numpy.ndarray=None, + whoverformat: str=None, + wsrc: str=None, + x: numpy.ndarray=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zhoverformat: str=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -18276,54 +18276,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, + branchvalues: Any=None, + count: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, domain=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, insidetextfont=None, - insidetextorientation=None, - labels=None, - labelssrc=None, + insidetextorientation: Any=None, + labels: numpy.ndarray=None, + labelssrc: str=None, leaf=None, - legend=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, + legendrank: int|float=None, + legendwidth: int|float=None, + level: Any=None, marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + maxdepth: int=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, outsidetextfont=None, - parents=None, - parentssrc=None, + parents: numpy.ndarray=None, + parentssrc: str=None, root=None, - rotation=None, - sort=None, + rotation: int|float=None, + sort: bool=None, stream=None, - text=None, + text: numpy.ndarray=None, textfont=None, - textinfo=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + textinfo: Any=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: Any=None, row=None, col=None, **kwargs @@ -18666,64 +18666,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, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - connectgaps=None, + colorscale: str=None, + connectgaps: bool=None, contours=None, - customdata=None, - customdatasrc=None, - hidesurface=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + hidesurface: bool=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, lighting=None, lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - opacityscale=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + opacityscale: Any=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=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, + surfacecolor: numpy.ndarray=None, + surfacecolorsrc: str=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xcalendar: Any=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + ycalendar: Any=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zcalendar: Any=None, + zhoverformat: str=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -19135,30 +19135,30 @@ def add_surface(self, new_trace, row=row, col=col) def add_table(self, cells=None, - columnorder=None, - columnordersrc=None, - columnwidth=None, - columnwidthsrc=None, - customdata=None, - customdatasrc=None, + columnorder: numpy.ndarray=None, + columnordersrc: str=None, + columnwidth: int|float=None, + columnwidthsrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, domain=None, header=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - ids=None, - idssrc=None, - legend=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, + legendrank: int|float=None, + legendwidth: int|float=None, + meta: Any=None, + metasrc: str=None, + name: str=None, stream=None, - uid=None, - uirevision=None, - visible=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, row=None, col=None, **kwargs @@ -19343,54 +19343,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, + branchvalues: Any=None, + count: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, domain=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, insidetextfont=None, - labels=None, - labelssrc=None, - legend=None, + labels: numpy.ndarray=None, + labelssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, + legendrank: int|float=None, + legendwidth: int|float=None, + level: Any=None, marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + maxdepth: int=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, outsidetextfont=None, - parents=None, - parentssrc=None, + parents: numpy.ndarray=None, + parentssrc: str=None, pathbar=None, root=None, - sort=None, + sort: bool=None, stream=None, - text=None, + text: numpy.ndarray=None, textfont=None, - textinfo=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, + textinfo: Any=None, + textposition: Any=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, tiling=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + uid: str=None, + uirevision: Any=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: Any=None, row=None, col=None, **kwargs @@ -19726,67 +19726,67 @@ def add_treemap(self, return self.add_trace( new_trace, row=row, col=col) def add_violin(self, - alignmentgroup=None, - bandwidth=None, + alignmentgroup: str=None, + bandwidth: int|float=None, box=None, - customdata=None, - customdatasrc=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - jitter=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + jitter: int|float=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=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, + meta: Any=None, + metasrc: str=None, + name: str=None, + offsetgroup: str=None, + opacity: int|float=None, + orientation: Any=None, + pointpos: int|float=None, + points: Any=None, + quartilemethod: Any=None, + scalegroup: str=None, + scalemode: Any=None, selected=None, - selectedpoints=None, - showlegend=None, - side=None, - span=None, - spanmode=None, + selectedpoints: Any=None, + showlegend: bool=None, + side: Any=None, + span: list=None, + spanmode: Any=None, stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=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, + visible: Any=None, + width: int|float=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + yhoverformat: str=None, + ysrc: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -20240,67 +20240,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, + autocolorscale: bool=None, caps=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colorscale=None, + colorscale: str=None, contour=None, - customdata=None, - customdatasrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + flatshading: bool=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - isomax=None, - isomin=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + isomax: int|float=None, + isomin: int|float=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, lighting=None, lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - opacityscale=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + opacityscale: Any=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=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, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + value: numpy.ndarray=None, + valuehoverformat: str=None, + valuesrc: str=None, + visible: Any=None, + x: numpy.ndarray=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zhoverformat: str=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -20722,79 +20722,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, + alignmentgroup: str=None, + base: int|float=None, + cliponaxis: bool=None, connector=None, - constraintext=None, - customdata=None, - customdatasrc=None, + constraintext: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, decreasing=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, + dx: int|float=None, + dy: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, increasing=None, - insidetextanchor=None, + insidetextanchor: Any=None, insidetextfont=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=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, + legendrank: int|float=None, + legendwidth: int|float=None, + measure: numpy.ndarray=None, + measuresrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + offset: int|float=None, + offsetgroup: str=None, + offsetsrc: str=None, + opacity: int|float=None, + orientation: Any=None, outsidetextfont=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, - textangle=None, + text: str=None, + textangle: int|float=None, textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, + textinfo: Any=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=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, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + width: int|float=None, + widthsrc: str=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -22830,49 +22830,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, + align: Any=None, + arrowcolor: str=None, + arrowhead: int=None, + arrowside: Any=None, + arrowsize: int|float=None, + arrowwidth: int|float=None, + ax: Any=None, + axref: Any=None, + ay: Any=None, + ayref: Any=None, + bgcolor: str=None, + bordercolor: str=None, + borderpad: int|float=None, + borderwidth: int|float=None, + captureevents: bool=None, + clicktoshow: Any=None, font=None, - height=None, + height: int|float=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, + hovertext: str=None, + name: str=None, + opacity: int|float=None, + showarrow: bool=None, + standoff: int|float=None, + startarrowhead: int=None, + startarrowsize: int|float=None, + startstandoff: int|float=None, + templateitemname: str=None, + text: str=None, + textangle: int|float=None, + valign: Any=None, + visible: bool=None, + width: int|float=None, + x: Any=None, + xanchor: Any=None, + xclick: Any=None, + xref: Any=None, + xshift: int|float=None, + y: Any=None, + yanchor: Any=None, + yclick: Any=None, + yref: Any=None, + yshift: int|float=None, row=None, col=None, secondary_y=None, @@ -23410,21 +23410,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, + name: str=None, + opacity: int|float=None, + sizex: int|float=None, + sizey: int|float=None, + sizing: Any=None, + source: str=None, + templateitemname: str=None, + visible: bool=None, + x: Any=None, + xanchor: Any=None, + xref: Any=None, + y: Any=None, + yanchor: Any=None, + yref: Any=None, row=None, col=None, secondary_y=None, @@ -23741,17 +23741,17 @@ 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, + name: str=None, + opacity: int|float=None, + path: str=None, + templateitemname: str=None, + type: Any=None, + x0: Any=None, + x1: Any=None, + xref: Any=None, + y0: Any=None, + y1: Any=None, + yref: Any=None, row=None, col=None, secondary_y=None, @@ -24049,38 +24049,38 @@ def update_shapes( def add_shape(self, arg=None, - editable=None, - fillcolor=None, - fillrule=None, + editable: bool=None, + fillcolor: str=None, + fillrule: Any=None, label=None, - layer=None, - legend=None, - legendgroup=None, + layer: Any=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=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, + name: str=None, + opacity: int|float=None, + path: str=None, + showlegend: bool=None, + templateitemname: str=None, + type: Any=None, + visible: Any=None, + x0: Any=None, + x0shift: int|float=None, + x1: Any=None, + x1shift: int|float=None, + xanchor: Any=None, + xref: Any=None, + xsizemode: Any=None, + y0: Any=None, + y0shift: int|float=None, + y1: Any=None, + y1shift: int|float=None, + yanchor: Any=None, + yref: Any=None, + ysizemode: Any=None, row=None, col=None, secondary_y=None, diff --git a/packages/python/plotly/plotly/graph_objs/_figurewidget.py b/packages/python/plotly/plotly/graph_objs/_figurewidget.py index 999443a8de..4249e143f7 100644 --- a/packages/python/plotly/plotly/graph_objs/_figurewidget.py +++ b/packages/python/plotly/plotly/graph_objs/_figurewidget.py @@ -580,80 +580,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, + alignmentgroup: str=None, + base: Any=None, + basesrc: str=None, + cliponaxis: bool=None, + constraintext: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, error_x=None, error_y=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + insidetextanchor: Any=None, insidetextfont=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetgroup=None, - offsetsrc=None, - opacity=None, - orientation=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + offset: int|float=None, + offsetgroup: str=None, + offsetsrc: str=None, + opacity: int|float=None, + orientation: Any=None, outsidetextfont=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, - textangle=None, + text: str=None, + textangle: int|float=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=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, + visible: Any=None, + width: int|float=None, + widthsrc: str=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -1147,53 +1147,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, + base: Any=None, + basesrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dr: int|float=None, + dtheta: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetsrc=None, - opacity=None, - r=None, - r0=None, - rsrc=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + offset: int|float=None, + offsetsrc: str=None, + opacity: int|float=None, + r: numpy.ndarray=None, + r0: Any=None, + rsrc: str=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, - textsrc=None, - theta=None, - theta0=None, - thetasrc=None, - thetaunit=None, - uid=None, - uirevision=None, + subplot: str=None, + text: str=None, + textsrc: str=None, + theta: numpy.ndarray=None, + theta0: Any=None, + thetasrc: str=None, + thetaunit: Any=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - width=None, - widthsrc=None, + visible: Any=None, + width: int|float=None, + widthsrc: str=None, row=None, col=None, **kwargs @@ -1492,92 +1492,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, + alignmentgroup: str=None, + boxmean: Any=None, + boxpoints: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - jitter=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + jitter: int|float=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - lowerfence=None, - lowerfencesrc=None, + lowerfence: numpy.ndarray=None, + lowerfencesrc: str=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, + mean: numpy.ndarray=None, + meansrc: str=None, + median: numpy.ndarray=None, + mediansrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + notched: bool=None, + notchspan: numpy.ndarray=None, + notchspansrc: str=None, + notchwidth: int|float=None, + offsetgroup: str=None, + opacity: int|float=None, + orientation: Any=None, + pointpos: int|float=None, + q1: numpy.ndarray=None, + q1src: str=None, + q3: numpy.ndarray=None, + q3src: str=None, + quartilemethod: Any=None, + sd: numpy.ndarray=None, + sdmultiple: int|float=None, + sdsrc: str=None, selected=None, - selectedpoints=None, - showlegend=None, - showwhiskers=None, - sizemode=None, + selectedpoints: Any=None, + showlegend: bool=None, + showwhiskers: bool=None, + sizemode: Any=None, stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=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, + upperfence: numpy.ndarray=None, + upperfencesrc: str=None, + visible: Any=None, + whiskerwidth: int|float=None, + width: int|float=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -2176,55 +2176,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, + close: numpy.ndarray=None, + closesrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, decreasing=None, - high=None, - highsrc=None, - hoverinfo=None, - hoverinfosrc=None, + high: numpy.ndarray=None, + highsrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, increasing=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - low=None, - lowsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - open=None, - opensrc=None, - selectedpoints=None, - showlegend=None, + low: numpy.ndarray=None, + lowsrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + open: numpy.ndarray=None, + opensrc: str=None, + selectedpoints: Any=None, + showlegend: bool=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, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + whiskerwidth: int|float=None, + x: numpy.ndarray=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + yaxis: str=None, + yhoverformat: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -2550,43 +2550,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, + a: numpy.ndarray=None, + a0: int|float=None, aaxis=None, - asrc=None, - b=None, - b0=None, + asrc: str=None, + b: numpy.ndarray=None, + b0: int|float=None, baxis=None, - bsrc=None, - carpet=None, - cheaterslope=None, - color=None, - customdata=None, - customdatasrc=None, - da=None, - db=None, + bsrc: str=None, + carpet: str=None, + cheaterslope: int|float=None, + color: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + da: int|float=None, + db: int|float=None, font=None, - ids=None, - idssrc=None, - legend=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + legendrank: int|float=None, + legendwidth: int|float=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, stream=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xsrc=None, - y=None, - yaxis=None, - ysrc=None, - zorder=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xaxis: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yaxis: str=None, + ysrc: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -2835,54 +2835,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, + autocolorscale: bool=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geo=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + featureidkey: str=None, + geo: str=None, + geojson: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locationmode=None, - locations=None, - locationssrc=None, + legendrank: int|float=None, + legendwidth: int|float=None, + locationmode: Any=None, + locations: numpy.ndarray=None, + locationssrc: str=None, marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + reversescale: bool=None, selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, + selectedpoints: Any=None, + showlegend: bool=None, + showscale: bool=None, stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + visible: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -3218,54 +3218,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, + autocolorscale: bool=None, + below: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + featureidkey: str=None, + geojson: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locations=None, - locationssrc=None, + legendrank: int|float=None, + legendwidth: int|float=None, + locations: numpy.ndarray=None, + locationssrc: str=None, marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + reversescale: bool=None, selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, + selectedpoints: Any=None, + showlegend: bool=None, + showscale: bool=None, stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + subplot: str=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + visible: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -3599,54 +3599,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, + autocolorscale: bool=None, + below: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - featureidkey=None, - geojson=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + featureidkey: str=None, + geojson: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - locations=None, - locationssrc=None, + legendrank: int|float=None, + legendwidth: int|float=None, + locations: numpy.ndarray=None, + locationssrc: str=None, marker=None, - meta=None, - metasrc=None, - name=None, - reversescale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + reversescale: bool=None, selected=None, - selectedpoints=None, - showlegend=None, - showscale=None, + selectedpoints: Any=None, + showlegend: bool=None, + showscale: bool=None, stream=None, - subplot=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + subplot: str=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - z=None, - zauto=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + visible: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -3989,67 +3989,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, + anchor: Any=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=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, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=None, + sizemode: Any=None, + sizeref: int|float=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, + text: str=None, + textsrc: str=None, + u: numpy.ndarray=None, + uhoverformat: str=None, + uid: str=None, + uirevision: Any=None, + usrc: str=None, + v: numpy.ndarray=None, + vhoverformat: str=None, + visible: Any=None, + vsrc: str=None, + w: numpy.ndarray=None, + whoverformat: str=None, + wsrc: str=None, + x: numpy.ndarray=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zhoverformat: str=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -4484,79 +4484,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, + autocolorscale: bool=None, + autocontour: bool=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - connectgaps=None, + colorscale: str=None, + connectgaps: bool=None, contours=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoverongaps=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoverongaps: bool=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: numpy.ndarray=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - meta=None, - metasrc=None, - name=None, - ncontours=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + ncontours: int=None, + opacity: int|float=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=None, stream=None, - text=None, + text: numpy.ndarray=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, + textsrc: str=None, + texttemplate: str=None, + transpose: bool=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + xtype: Any=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + ytype: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zhoverformat: str=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zorder: int=None, + zsrc: str=None, row=None, col=None, secondary_y=None, @@ -5058,60 +5058,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, + a: numpy.ndarray=None, + a0: Any=None, + asrc: str=None, + atype: Any=None, + autocolorscale: bool=None, + autocontour: bool=None, + b: numpy.ndarray=None, + b0: Any=None, + bsrc: str=None, + btype: Any=None, + carpet: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, + colorscale: str=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, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + da: int|float=None, + db: int|float=None, + fillcolor: str=None, + hovertext: numpy.ndarray=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - meta=None, - metasrc=None, - name=None, - ncontours=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + ncontours: int=None, + opacity: int|float=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=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, + text: numpy.ndarray=None, + textsrc: str=None, + transpose: bool=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + xaxis: str=None, + yaxis: str=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zorder: int=None, + zsrc: str=None, row=None, col=None, secondary_y=None, @@ -5453,53 +5453,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, + autocolorscale: bool=None, + below: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + lat: numpy.ndarray=None, + latsrc: str=None, + legend: str=None, + legendgroup: str=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, + legendrank: int|float=None, + legendwidth: int|float=None, + lon: numpy.ndarray=None, + lonsrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + radius: int|float=None, + radiussrc: str=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=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, + subplot: str=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -5830,53 +5830,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, + autocolorscale: bool=None, + below: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + lat: numpy.ndarray=None, + latsrc: str=None, + legend: str=None, + legendgroup: str=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, + legendrank: int|float=None, + legendwidth: int|float=None, + lon: numpy.ndarray=None, + lonsrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + radius: int|float=None, + radiussrc: str=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=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, + subplot: str=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -6216,72 +6216,72 @@ def add_densitymapbox(self, return self.add_trace( new_trace, row=row, col=col) def add_funnel(self, - alignmentgroup=None, - cliponaxis=None, + alignmentgroup: str=None, + cliponaxis: bool=None, connector=None, - constraintext=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, + constraintext: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + insidetextanchor: Any=None, insidetextfont=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetgroup=None, - opacity=None, - orientation=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + offset: int|float=None, + offsetgroup: str=None, + opacity: int|float=None, + orientation: Any=None, outsidetextfont=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, - textangle=None, + text: str=None, + textangle: int|float=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, + textinfo: Any=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + width: int|float=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -6751,52 +6751,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, + aspectratio: int|float=None, + baseratio: int|float=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dlabel: int|float=None, domain=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, insidetextfont=None, - label0=None, - labels=None, - labelssrc=None, - legend=None, - legendgroup=None, + label0: int|float=None, + labels: numpy.ndarray=None, + labelssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - scalegroup=None, - showlegend=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + scalegroup: str=None, + showlegend: bool=None, stream=None, - text=None, + text: numpy.ndarray=None, textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, + textinfo: Any=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, title=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + uid: str=None, + uirevision: Any=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: Any=None, row=None, col=None, **kwargs @@ -7111,77 +7111,77 @@ def add_funnelarea(self, return self.add_trace( new_trace, row=row, col=col) def add_heatmap(self, - autocolorscale=None, - coloraxis=None, + autocolorscale: bool=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoverongaps=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoverongaps: bool=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: numpy.ndarray=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, + legendrank: int|float=None, + legendwidth: int|float=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=None, stream=None, - text=None, + text: numpy.ndarray=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, + textsrc: str=None, + texttemplate: str=None, + transpose: bool=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xgap: int|float=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + xtype: Any=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + ygap: int|float=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + ytype: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zhoverformat: str=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zorder: int=None, + zsmooth: Any=None, + zsrc: str=None, row=None, col=None, secondary_y=None, @@ -7673,72 +7673,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, + alignmentgroup: str=None, + autobinx: bool=None, + autobiny: bool=None, + bingroup: str=None, + cliponaxis: bool=None, + constraintext: Any=None, cumulative=None, - customdata=None, - customdatasrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, error_x=None, error_y=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, + histfunc: Any=None, + histnorm: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + insidetextanchor: Any=None, insidetextfont=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - nbinsx=None, - nbinsy=None, - offsetgroup=None, - opacity=None, - orientation=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + nbinsx: int=None, + nbinsy: int=None, + offsetgroup: str=None, + opacity: int|float=None, + orientation: Any=None, outsidetextfont=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, - textangle=None, + text: str=None, + textangle: int|float=None, textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - uid=None, - uirevision=None, + textposition: Any=None, + textsrc: str=None, + texttemplate: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - x=None, - xaxis=None, + visible: Any=None, + x: numpy.ndarray=None, + xaxis: str=None, xbins=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, + xcalendar: Any=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yaxis: str=None, ybins=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - zorder=None, + ycalendar: Any=None, + yhoverformat: str=None, + ysrc: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -8213,69 +8213,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, + autobinx: bool=None, + autobiny: bool=None, + autocolorscale: bool=None, + bingroup: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + histfunc: Any=None, + histnorm: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - nbinsx=None, - nbinsy=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + nbinsx: int=None, + nbinsy: int=None, + opacity: int|float=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=None, stream=None, textfont=None, - texttemplate=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xbingroup=None, + texttemplate: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xaxis: str=None, + xbingroup: str=None, xbins=None, - xcalendar=None, - xgap=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, - ybingroup=None, + xcalendar: Any=None, + xgap: int|float=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yaxis: str=None, + ybingroup: str=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, + ycalendar: Any=None, + ygap: int|float=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zauto: bool=None, + zhoverformat: str=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsmooth: Any=None, + zsrc: str=None, row=None, col=None, secondary_y=None, @@ -8744,70 +8744,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, + autobinx: bool=None, + autobiny: bool=None, + autocolorscale: bool=None, + autocontour: bool=None, + bingroup: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, + colorscale: str=None, contours=None, - customdata=None, - customdatasrc=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + histfunc: Any=None, + histnorm: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=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, + meta: Any=None, + metasrc: str=None, + name: str=None, + nbinsx: int=None, + nbinsy: int=None, + ncontours: int=None, + opacity: int|float=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=None, stream=None, textfont=None, - texttemplate=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xbingroup=None, + texttemplate: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xaxis: str=None, + xbingroup: str=None, xbins=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, - ybingroup=None, + xcalendar: Any=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yaxis: str=None, + ybingroup: str=None, ybins=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - z=None, - zauto=None, - zhoverformat=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + ycalendar: Any=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zauto: bool=None, + zhoverformat: str=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, row=None, col=None, secondary_y=None, @@ -9290,55 +9290,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, + branchvalues: Any=None, + count: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, domain=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, insidetextfont=None, - labels=None, - labelssrc=None, + labels: numpy.ndarray=None, + labelssrc: str=None, leaf=None, - legend=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, + legendrank: int|float=None, + legendwidth: int|float=None, + level: Any=None, marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + maxdepth: int=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, outsidetextfont=None, - parents=None, - parentssrc=None, + parents: numpy.ndarray=None, + parentssrc: str=None, pathbar=None, root=None, - sort=None, + sort: bool=None, stream=None, - text=None, + text: numpy.ndarray=None, textfont=None, - textinfo=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, + textinfo: Any=None, + textposition: Any=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, tiling=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + uid: str=None, + uirevision: Any=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: Any=None, row=None, col=None, **kwargs @@ -9677,45 +9677,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, + colormodel: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: numpy.ndarray=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - source=None, + legendrank: int|float=None, + legendwidth: int|float=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + source: str=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, + text: numpy.ndarray=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x0: Any=None, + xaxis: str=None, + y0: Any=None, + yaxis: str=None, + z: numpy.ndarray=None, + zmax: list=None, + zmin: list=None, + zorder: int=None, + zsmooth: Any=None, + zsrc: str=None, row=None, col=None, secondary_y=None, @@ -10015,29 +10015,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, + align: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, delta=None, domain=None, gauge=None, - ids=None, - idssrc=None, - legend=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - mode=None, - name=None, + legendrank: int|float=None, + legendwidth: int|float=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, number=None, stream=None, title=None, - uid=None, - uirevision=None, - value=None, - visible=None, + uid: str=None, + uirevision: Any=None, + value: int|float=None, + visible: Any=None, row=None, col=None, **kwargs @@ -10213,66 +10213,66 @@ def add_indicator(self, return self.add_trace( new_trace, row=row, col=col) def add_isosurface(self, - autocolorscale=None, + autocolorscale: bool=None, caps=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colorscale=None, + colorscale: str=None, contour=None, - customdata=None, - customdatasrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + flatshading: bool=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - isomax=None, - isomin=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + isomax: int|float=None, + isomin: int|float=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, lighting=None, lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=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, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + value: numpy.ndarray=None, + valuehoverformat: str=None, + valuesrc: str=None, + visible: Any=None, + x: numpy.ndarray=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zhoverformat: str=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -10682,76 +10682,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, + alphahull: int|float=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, + colorscale: str=None, contour=None, - customdata=None, - customdatasrc=None, - delaunayaxis=None, - facecolor=None, - facecolorsrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + delaunayaxis: Any=None, + facecolor: numpy.ndarray=None, + facecolorsrc: str=None, + flatshading: bool=None, + hoverinfo: Any=None, + hoverinfosrc: str=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, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + i: numpy.ndarray=None, + ids: numpy.ndarray=None, + idssrc: str=None, + intensity: numpy.ndarray=None, + intensitymode: Any=None, + intensitysrc: str=None, + isrc: str=None, + j: numpy.ndarray=None, + jsrc: str=None, + k: numpy.ndarray=None, + ksrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, lighting=None, lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=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, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + vertexcolor: numpy.ndarray=None, + vertexcolorsrc: str=None, + visible: Any=None, + x: numpy.ndarray=None, + xcalendar: Any=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + ycalendar: Any=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zcalendar: Any=None, + zhoverformat: str=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -11241,55 +11241,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, + close: numpy.ndarray=None, + closesrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, decreasing=None, - high=None, - highsrc=None, - hoverinfo=None, - hoverinfosrc=None, + high: numpy.ndarray=None, + highsrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, increasing=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - low=None, - lowsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - open=None, - opensrc=None, - selectedpoints=None, - showlegend=None, + low: numpy.ndarray=None, + lowsrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + open: numpy.ndarray=None, + opensrc: str=None, + selectedpoints: Any=None, + showlegend: bool=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, + text: str=None, + textsrc: str=None, + tickwidth: int|float=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + yaxis: str=None, + yhoverformat: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -11614,29 +11614,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, + arrangement: Any=None, + bundlecolors: bool=None, + counts: int|float=None, + countssrc: str=None, dimensions=None, dimensiondefaults=None, domain=None, - hoverinfo=None, - hoveron=None, - hovertemplate=None, + hoverinfo: Any=None, + hoveron: Any=None, + hovertemplate: str=None, labelfont=None, legendgrouptitle=None, - legendwidth=None, + legendwidth: int|float=None, line=None, - meta=None, - metasrc=None, - name=None, - sortpaths=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + sortpaths: Any=None, stream=None, tickfont=None, - uid=None, - uirevision=None, - visible=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, row=None, col=None, **kwargs @@ -11836,31 +11836,31 @@ def add_parcats(self, return self.add_trace( new_trace, row=row, col=col) def add_parcoords(self, - customdata=None, - customdatasrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, dimensions=None, dimensiondefaults=None, domain=None, - ids=None, - idssrc=None, - labelangle=None, + ids: numpy.ndarray=None, + idssrc: str=None, + labelangle: int|float=None, labelfont=None, - labelside=None, - legend=None, + labelside: Any=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - meta=None, - metasrc=None, - name=None, + meta: Any=None, + metasrc: str=None, + name: str=None, rangefont=None, stream=None, tickfont=None, - uid=None, - uirevision=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, row=None, col=None, **kwargs @@ -12043,59 +12043,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, + automargin: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + direction: Any=None, + dlabel: int|float=None, domain=None, - hole=None, - hoverinfo=None, - hoverinfosrc=None, + hole: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, insidetextfont=None, - insidetextorientation=None, - label0=None, - labels=None, - labelssrc=None, - legend=None, - legendgroup=None, + insidetextorientation: Any=None, + label0: int|float=None, + labels: numpy.ndarray=None, + labelssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, outsidetextfont=None, - pull=None, - pullsrc=None, - rotation=None, - scalegroup=None, - showlegend=None, - sort=None, + pull: int|float=None, + pullsrc: str=None, + rotation: int|float=None, + scalegroup: str=None, + showlegend: bool=None, + sort: bool=None, stream=None, - text=None, + text: numpy.ndarray=None, textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, + textinfo: Any=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, title=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + uid: str=None, + uirevision: Any=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: Any=None, row=None, col=None, **kwargs @@ -12446,32 +12446,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, + arrangement: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, domain=None, - hoverinfo=None, + hoverinfo: Any=None, hoverlabel=None, - ids=None, - idssrc=None, - legend=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, link=None, - meta=None, - metasrc=None, - name=None, + meta: Any=None, + metasrc: str=None, + name: str=None, node=None, - orientation=None, - selectedpoints=None, + orientation: Any=None, + selectedpoints: Any=None, stream=None, textfont=None, - uid=None, - uirevision=None, - valueformat=None, - valuesuffix=None, - visible=None, + uid: str=None, + uirevision: Any=None, + valueformat: str=None, + valuesuffix: str=None, + visible: Any=None, row=None, col=None, **kwargs @@ -12666,80 +12666,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, + alignmentgroup: str=None, + cliponaxis: bool=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, error_x=None, error_y=None, - fill=None, - fillcolor=None, + fill: Any=None, + fillcolor: str=None, fillgradient=None, fillpattern=None, - groupnorm=None, - hoverinfo=None, - hoverinfosrc=None, + groupnorm: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - offsetgroup=None, - opacity=None, - orientation=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + offsetgroup: str=None, + opacity: int|float=None, + orientation: Any=None, selected=None, - selectedpoints=None, - showlegend=None, - stackgaps=None, - stackgroup=None, + selectedpoints: Any=None, + showlegend: bool=None, + stackgaps: Any=None, + stackgroup: str=None, stream=None, - text=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=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, + visible: Any=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -13282,61 +13282,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, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, error_x=None, error_y=None, error_z=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, projection=None, - scene=None, - showlegend=None, + scene: str=None, + showlegend: bool=None, stream=None, - surfaceaxis=None, - surfacecolor=None, - text=None, + surfaceaxis: Any=None, + surfacecolor: str=None, + text: str=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, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xcalendar: Any=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + ycalendar: Any=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zcalendar: Any=None, + zhoverformat: str=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -13716,56 +13716,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, + a: numpy.ndarray=None, + asrc: str=None, + b: numpy.ndarray=None, + bsrc: str=None, + carpet: str=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - xaxis=None, - yaxis=None, - zorder=None, + visible: Any=None, + xaxis: str=None, + yaxis: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -14126,57 +14126,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, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + featureidkey: str=None, + fill: Any=None, + fillcolor: str=None, + geo: str=None, + geojson: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + lat: numpy.ndarray=None, + latsrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - locationmode=None, - locations=None, - locationssrc=None, - lon=None, - lonsrc=None, + locationmode: Any=None, + locations: numpy.ndarray=None, + locationssrc: str=None, + lon: numpy.ndarray=None, + lonsrc: str=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, row=None, col=None, **kwargs @@ -14533,69 +14533,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, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, error_x=None, error_y=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=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, + visible: Any=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, row=None, col=None, secondary_y=None, @@ -15043,53 +15043,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, + below: str=None, cluster=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + lat: numpy.ndarray=None, + latsrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - lon=None, - lonsrc=None, + lon: numpy.ndarray=None, + lonsrc: str=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, + subplot: str=None, + text: str=None, textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, row=None, col=None, **kwargs @@ -15418,53 +15418,53 @@ def add_scattermap(self, return self.add_trace( new_trace, row=row, col=col) def add_scattermapbox(self, - below=None, + below: str=None, cluster=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + lat: numpy.ndarray=None, + latsrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - lon=None, - lonsrc=None, + lon: numpy.ndarray=None, + lonsrc: str=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, + subplot: str=None, + text: str=None, textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, row=None, col=None, **kwargs @@ -15802,59 +15802,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, + cliponaxis: bool=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dr: int|float=None, + dtheta: int|float=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - r=None, - r0=None, - rsrc=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, + r: numpy.ndarray=None, + r0: Any=None, + rsrc: str=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, + subplot: str=None, + text: str=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, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + theta: numpy.ndarray=None, + theta0: Any=None, + thetasrc: str=None, + thetaunit: Any=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, row=None, col=None, **kwargs @@ -16222,57 +16222,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, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dr: int|float=None, + dtheta: int|float=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - r=None, - r0=None, - rsrc=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, + r: numpy.ndarray=None, + r0: Any=None, + rsrc: str=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, + subplot: str=None, + text: str=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, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + theta: numpy.ndarray=None, + theta0: Any=None, + thetasrc: str=None, + thetaunit: Any=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, row=None, col=None, **kwargs @@ -16637,54 +16637,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, + cliponaxis: bool=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=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, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + imag: numpy.ndarray=None, + imagsrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - real=None, - realsrc=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, + real: numpy.ndarray=None, + realsrc: str=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, + subplot: str=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, row=None, col=None, **kwargs @@ -17034,57 +17034,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, + a: numpy.ndarray=None, + asrc: str=None, + b: numpy.ndarray=None, + bsrc: str=None, + c: numpy.ndarray=None, + cliponaxis: bool=None, + connectgaps: bool=None, + csrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - sum=None, - text=None, + subplot: str=None, + sum: int|float=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, row=None, col=None, **kwargs @@ -17453,46 +17453,46 @@ def add_scatterternary(self, return self.add_trace( new_trace, row=row, col=col) def add_splom(self, - customdata=None, - customdatasrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, diagonal=None, dimensions=None, dimensiondefaults=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, - showlowerhalf=None, - showupperhalf=None, + selectedpoints: Any=None, + showlegend: bool=None, + showlowerhalf: bool=None, + showupperhalf: bool=None, stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - xaxes=None, - xhoverformat=None, - yaxes=None, - yhoverformat=None, + visible: Any=None, + xaxes: list=None, + xhoverformat: str=None, + yaxes: list=None, + yhoverformat: str=None, row=None, col=None, **kwargs @@ -17800,65 +17800,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, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=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, + maxdisplayed: int=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=None, + sizeref: int|float=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, + text: str=None, + u: numpy.ndarray=None, + uhoverformat: str=None, + uid: str=None, + uirevision: Any=None, + usrc: str=None, + v: numpy.ndarray=None, + vhoverformat: str=None, + visible: Any=None, + vsrc: str=None, + w: numpy.ndarray=None, + whoverformat: str=None, + wsrc: str=None, + x: numpy.ndarray=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zhoverformat: str=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -18276,54 +18276,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, + branchvalues: Any=None, + count: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, domain=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, insidetextfont=None, - insidetextorientation=None, - labels=None, - labelssrc=None, + insidetextorientation: Any=None, + labels: numpy.ndarray=None, + labelssrc: str=None, leaf=None, - legend=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, + legendrank: int|float=None, + legendwidth: int|float=None, + level: Any=None, marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + maxdepth: int=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, outsidetextfont=None, - parents=None, - parentssrc=None, + parents: numpy.ndarray=None, + parentssrc: str=None, root=None, - rotation=None, - sort=None, + rotation: int|float=None, + sort: bool=None, stream=None, - text=None, + text: numpy.ndarray=None, textfont=None, - textinfo=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + textinfo: Any=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: Any=None, row=None, col=None, **kwargs @@ -18666,64 +18666,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, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - connectgaps=None, + colorscale: str=None, + connectgaps: bool=None, contours=None, - customdata=None, - customdatasrc=None, - hidesurface=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + hidesurface: bool=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, lighting=None, lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - opacityscale=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + opacityscale: Any=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=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, + surfacecolor: numpy.ndarray=None, + surfacecolorsrc: str=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xcalendar: Any=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + ycalendar: Any=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zcalendar: Any=None, + zhoverformat: str=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -19135,30 +19135,30 @@ def add_surface(self, new_trace, row=row, col=col) def add_table(self, cells=None, - columnorder=None, - columnordersrc=None, - columnwidth=None, - columnwidthsrc=None, - customdata=None, - customdatasrc=None, + columnorder: numpy.ndarray=None, + columnordersrc: str=None, + columnwidth: int|float=None, + columnwidthsrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, domain=None, header=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - ids=None, - idssrc=None, - legend=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, + legendrank: int|float=None, + legendwidth: int|float=None, + meta: Any=None, + metasrc: str=None, + name: str=None, stream=None, - uid=None, - uirevision=None, - visible=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, row=None, col=None, **kwargs @@ -19343,54 +19343,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, + branchvalues: Any=None, + count: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, domain=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, insidetextfont=None, - labels=None, - labelssrc=None, - legend=None, + labels: numpy.ndarray=None, + labelssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, + legendrank: int|float=None, + legendwidth: int|float=None, + level: Any=None, marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + maxdepth: int=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, outsidetextfont=None, - parents=None, - parentssrc=None, + parents: numpy.ndarray=None, + parentssrc: str=None, pathbar=None, root=None, - sort=None, + sort: bool=None, stream=None, - text=None, + text: numpy.ndarray=None, textfont=None, - textinfo=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, + textinfo: Any=None, + textposition: Any=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, tiling=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + uid: str=None, + uirevision: Any=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: Any=None, row=None, col=None, **kwargs @@ -19726,67 +19726,67 @@ def add_treemap(self, return self.add_trace( new_trace, row=row, col=col) def add_violin(self, - alignmentgroup=None, - bandwidth=None, + alignmentgroup: str=None, + bandwidth: int|float=None, box=None, - customdata=None, - customdatasrc=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - jitter=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + jitter: int|float=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=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, + meta: Any=None, + metasrc: str=None, + name: str=None, + offsetgroup: str=None, + opacity: int|float=None, + orientation: Any=None, + pointpos: int|float=None, + points: Any=None, + quartilemethod: Any=None, + scalegroup: str=None, + scalemode: Any=None, selected=None, - selectedpoints=None, - showlegend=None, - side=None, - span=None, - spanmode=None, + selectedpoints: Any=None, + showlegend: bool=None, + side: Any=None, + span: list=None, + spanmode: Any=None, stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=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, + visible: Any=None, + width: int|float=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + yhoverformat: str=None, + ysrc: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -20240,67 +20240,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, + autocolorscale: bool=None, caps=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colorscale=None, + colorscale: str=None, contour=None, - customdata=None, - customdatasrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + flatshading: bool=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - isomax=None, - isomin=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + isomax: int|float=None, + isomin: int|float=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, lighting=None, lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - opacityscale=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + opacityscale: Any=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=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, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + value: numpy.ndarray=None, + valuehoverformat: str=None, + valuesrc: str=None, + visible: Any=None, + x: numpy.ndarray=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zhoverformat: str=None, + zsrc: str=None, row=None, col=None, **kwargs @@ -20722,79 +20722,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, + alignmentgroup: str=None, + base: int|float=None, + cliponaxis: bool=None, connector=None, - constraintext=None, - customdata=None, - customdatasrc=None, + constraintext: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, decreasing=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, + dx: int|float=None, + dy: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, increasing=None, - insidetextanchor=None, + insidetextanchor: Any=None, insidetextfont=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=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, + legendrank: int|float=None, + legendwidth: int|float=None, + measure: numpy.ndarray=None, + measuresrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + offset: int|float=None, + offsetgroup: str=None, + offsetsrc: str=None, + opacity: int|float=None, + orientation: Any=None, outsidetextfont=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, - textangle=None, + text: str=None, + textangle: int|float=None, textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, + textinfo: Any=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=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, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + width: int|float=None, + widthsrc: str=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + zorder: int=None, row=None, col=None, secondary_y=None, @@ -22830,49 +22830,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, + align: Any=None, + arrowcolor: str=None, + arrowhead: int=None, + arrowside: Any=None, + arrowsize: int|float=None, + arrowwidth: int|float=None, + ax: Any=None, + axref: Any=None, + ay: Any=None, + ayref: Any=None, + bgcolor: str=None, + bordercolor: str=None, + borderpad: int|float=None, + borderwidth: int|float=None, + captureevents: bool=None, + clicktoshow: Any=None, font=None, - height=None, + height: int|float=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, + hovertext: str=None, + name: str=None, + opacity: int|float=None, + showarrow: bool=None, + standoff: int|float=None, + startarrowhead: int=None, + startarrowsize: int|float=None, + startstandoff: int|float=None, + templateitemname: str=None, + text: str=None, + textangle: int|float=None, + valign: Any=None, + visible: bool=None, + width: int|float=None, + x: Any=None, + xanchor: Any=None, + xclick: Any=None, + xref: Any=None, + xshift: int|float=None, + y: Any=None, + yanchor: Any=None, + yclick: Any=None, + yref: Any=None, + yshift: int|float=None, row=None, col=None, secondary_y=None, @@ -23410,21 +23410,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, + name: str=None, + opacity: int|float=None, + sizex: int|float=None, + sizey: int|float=None, + sizing: Any=None, + source: str=None, + templateitemname: str=None, + visible: bool=None, + x: Any=None, + xanchor: Any=None, + xref: Any=None, + y: Any=None, + yanchor: Any=None, + yref: Any=None, row=None, col=None, secondary_y=None, @@ -23741,17 +23741,17 @@ 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, + name: str=None, + opacity: int|float=None, + path: str=None, + templateitemname: str=None, + type: Any=None, + x0: Any=None, + x1: Any=None, + xref: Any=None, + y0: Any=None, + y1: Any=None, + yref: Any=None, row=None, col=None, secondary_y=None, @@ -24049,38 +24049,38 @@ def update_shapes( def add_shape(self, arg=None, - editable=None, - fillcolor=None, - fillrule=None, + editable: bool=None, + fillcolor: str=None, + fillrule: Any=None, label=None, - layer=None, - legend=None, - legendgroup=None, + layer: Any=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=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, + name: str=None, + opacity: int|float=None, + path: str=None, + showlegend: bool=None, + templateitemname: str=None, + type: Any=None, + visible: Any=None, + x0: Any=None, + x0shift: int|float=None, + x1: Any=None, + x1shift: int|float=None, + xanchor: Any=None, + xref: Any=None, + xsizemode: Any=None, + y0: Any=None, + y0shift: int|float=None, + y1: Any=None, + y1shift: int|float=None, + yanchor: Any=None, + yref: Any=None, + ysizemode: Any=None, row=None, col=None, secondary_y=None, diff --git a/packages/python/plotly/plotly/graph_objs/_frame.py b/packages/python/plotly/plotly/graph_objs/_frame.py index f7176e434a..c652259314 100644 --- a/packages/python/plotly/plotly/graph_objs/_frame.py +++ b/packages/python/plotly/plotly/graph_objs/_frame.py @@ -163,12 +163,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, + data: Any=None, + group: str=None, + layout: Any=None, + name: str=None, + traces: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_funnel.py b/packages/python/plotly/plotly/graph_objs/_funnel.py index 671782d46a..94a19252b9 100644 --- a/packages/python/plotly/plotly/graph_objs/_funnel.py +++ b/packages/python/plotly/plotly/graph_objs/_funnel.py @@ -1925,72 +1925,72 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - alignmentgroup=None, - cliponaxis=None, + alignmentgroup: str=None, + cliponaxis: bool=None, connector=None, - constraintext=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, + constraintext: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + insidetextanchor: Any=None, insidetextfont=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - offset=None, - offsetgroup=None, - opacity=None, - orientation=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + offset: int|float=None, + offsetgroup: str=None, + opacity: int|float=None, + orientation: Any=None, outsidetextfont=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, - textangle=None, + text: str=None, + textangle: int|float=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, + textinfo: Any=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + width: int|float=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + zorder: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_funnelarea.py b/packages/python/plotly/plotly/graph_objs/_funnelarea.py index ea56fb2d7a..9308db3749 100644 --- a/packages/python/plotly/plotly/graph_objs/_funnelarea.py +++ b/packages/python/plotly/plotly/graph_objs/_funnelarea.py @@ -1317,52 +1317,52 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - aspectratio=None, - baseratio=None, - customdata=None, - customdatasrc=None, - dlabel=None, + aspectratio: int|float=None, + baseratio: int|float=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dlabel: int|float=None, domain=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, insidetextfont=None, - label0=None, - labels=None, - labelssrc=None, - legend=None, - legendgroup=None, + label0: int|float=None, + labels: numpy.ndarray=None, + labelssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - scalegroup=None, - showlegend=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + scalegroup: str=None, + showlegend: bool=None, stream=None, - text=None, + text: numpy.ndarray=None, textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, + textinfo: Any=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, title=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + uid: str=None, + uirevision: Any=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_heatmap.py b/packages/python/plotly/plotly/graph_objs/_heatmap.py index d6d7856212..ff29b9c98e 100644 --- a/packages/python/plotly/plotly/graph_objs/_heatmap.py +++ b/packages/python/plotly/plotly/graph_objs/_heatmap.py @@ -2042,77 +2042,77 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - coloraxis=None, + autocolorscale: bool=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoverongaps=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoverongaps: bool=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: numpy.ndarray=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, + legendrank: int|float=None, + legendwidth: int|float=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=None, stream=None, - text=None, + text: numpy.ndarray=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, + textsrc: str=None, + texttemplate: str=None, + transpose: bool=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xgap: int|float=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + xtype: Any=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + ygap: int|float=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + ytype: Any=None, + z: numpy.ndarray=None, + zauto: bool=None, + zhoverformat: str=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zorder: int=None, + zsmooth: Any=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_histogram.py b/packages/python/plotly/plotly/graph_objs/_histogram.py index 01bffa612e..6aa55eb3cc 100644 --- a/packages/python/plotly/plotly/graph_objs/_histogram.py +++ b/packages/python/plotly/plotly/graph_objs/_histogram.py @@ -1947,72 +1947,72 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - alignmentgroup=None, - autobinx=None, - autobiny=None, - bingroup=None, - cliponaxis=None, - constraintext=None, + alignmentgroup: str=None, + autobinx: bool=None, + autobiny: bool=None, + bingroup: str=None, + cliponaxis: bool=None, + constraintext: Any=None, cumulative=None, - customdata=None, - customdatasrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, error_x=None, error_y=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, + histfunc: Any=None, + histnorm: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - insidetextanchor=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + insidetextanchor: Any=None, insidetextfont=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - nbinsx=None, - nbinsy=None, - offsetgroup=None, - opacity=None, - orientation=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + nbinsx: int=None, + nbinsy: int=None, + offsetgroup: str=None, + opacity: int|float=None, + orientation: Any=None, outsidetextfont=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, - textangle=None, + text: str=None, + textangle: int|float=None, textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - uid=None, - uirevision=None, + textposition: Any=None, + textsrc: str=None, + texttemplate: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - x=None, - xaxis=None, + visible: Any=None, + x: numpy.ndarray=None, + xaxis: str=None, xbins=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, + xcalendar: Any=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yaxis: str=None, ybins=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - zorder=None, + ycalendar: Any=None, + yhoverformat: str=None, + ysrc: str=None, + zorder: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_histogram2d.py b/packages/python/plotly/plotly/graph_objs/_histogram2d.py index 63689c8ffe..a8d948a125 100644 --- a/packages/python/plotly/plotly/graph_objs/_histogram2d.py +++ b/packages/python/plotly/plotly/graph_objs/_histogram2d.py @@ -1897,69 +1897,69 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autobinx=None, - autobiny=None, - autocolorscale=None, - bingroup=None, - coloraxis=None, + autobinx: bool=None, + autobiny: bool=None, + autocolorscale: bool=None, + bingroup: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + histfunc: Any=None, + histnorm: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - nbinsx=None, - nbinsy=None, - opacity=None, - reversescale=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + nbinsx: int=None, + nbinsy: int=None, + opacity: int|float=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=None, stream=None, textfont=None, - texttemplate=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xbingroup=None, + texttemplate: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xaxis: str=None, + xbingroup: str=None, xbins=None, - xcalendar=None, - xgap=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, - ybingroup=None, + xcalendar: Any=None, + xgap: int|float=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yaxis: str=None, + ybingroup: str=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, + ycalendar: Any=None, + ygap: int|float=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zauto: bool=None, + zhoverformat: str=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsmooth: Any=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_histogram2dcontour.py b/packages/python/plotly/plotly/graph_objs/_histogram2dcontour.py index e77d45cadd..e87eea5291 100644 --- a/packages/python/plotly/plotly/graph_objs/_histogram2dcontour.py +++ b/packages/python/plotly/plotly/graph_objs/_histogram2dcontour.py @@ -1941,70 +1941,70 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autobinx=None, - autobiny=None, - autocolorscale=None, - autocontour=None, - bingroup=None, - coloraxis=None, + autobinx: bool=None, + autobiny: bool=None, + autocolorscale: bool=None, + autocontour: bool=None, + bingroup: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, + colorscale: str=None, contours=None, - customdata=None, - customdatasrc=None, - histfunc=None, - histnorm=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + histfunc: Any=None, + histnorm: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=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, + meta: Any=None, + metasrc: str=None, + name: str=None, + nbinsx: int=None, + nbinsy: int=None, + ncontours: int=None, + opacity: int|float=None, + reversescale: bool=None, + showlegend: bool=None, + showscale: bool=None, stream=None, textfont=None, - texttemplate=None, - uid=None, - uirevision=None, - visible=None, - x=None, - xaxis=None, - xbingroup=None, + texttemplate: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xaxis: str=None, + xbingroup: str=None, xbins=None, - xcalendar=None, - xhoverformat=None, - xsrc=None, - y=None, - yaxis=None, - ybingroup=None, + xcalendar: Any=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yaxis: str=None, + ybingroup: str=None, ybins=None, - ycalendar=None, - yhoverformat=None, - ysrc=None, - z=None, - zauto=None, - zhoverformat=None, - zmax=None, - zmid=None, - zmin=None, - zsrc=None, + ycalendar: Any=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zauto: bool=None, + zhoverformat: str=None, + zmax: int|float=None, + zmid: int|float=None, + zmin: int|float=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_icicle.py b/packages/python/plotly/plotly/graph_objs/_icicle.py index 07b8bdd557..e6e1650beb 100644 --- a/packages/python/plotly/plotly/graph_objs/_icicle.py +++ b/packages/python/plotly/plotly/graph_objs/_icicle.py @@ -1418,55 +1418,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - branchvalues=None, - count=None, - customdata=None, - customdatasrc=None, + branchvalues: Any=None, + count: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, domain=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, insidetextfont=None, - labels=None, - labelssrc=None, + labels: numpy.ndarray=None, + labelssrc: str=None, leaf=None, - legend=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, + legendrank: int|float=None, + legendwidth: int|float=None, + level: Any=None, marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + maxdepth: int=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, outsidetextfont=None, - parents=None, - parentssrc=None, + parents: numpy.ndarray=None, + parentssrc: str=None, pathbar=None, root=None, - sort=None, + sort: bool=None, stream=None, - text=None, + text: numpy.ndarray=None, textfont=None, - textinfo=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, + textinfo: Any=None, + textposition: Any=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, tiling=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + uid: str=None, + uirevision: Any=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_image.py b/packages/python/plotly/plotly/graph_objs/_image.py index 5067295a46..d72a8400bd 100644 --- a/packages/python/plotly/plotly/graph_objs/_image.py +++ b/packages/python/plotly/plotly/graph_objs/_image.py @@ -1157,45 +1157,45 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - colormodel=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, + colormodel: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: numpy.ndarray=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - source=None, + legendrank: int|float=None, + legendwidth: int|float=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + source: str=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, + text: numpy.ndarray=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x0: Any=None, + xaxis: str=None, + y0: Any=None, + yaxis: str=None, + z: numpy.ndarray=None, + zmax: list=None, + zmin: list=None, + zorder: int=None, + zsmooth: Any=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_indicator.py b/packages/python/plotly/plotly/graph_objs/_indicator.py index b3c37daf81..1a2713c80e 100644 --- a/packages/python/plotly/plotly/graph_objs/_indicator.py +++ b/packages/python/plotly/plotly/graph_objs/_indicator.py @@ -664,29 +664,29 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - customdata=None, - customdatasrc=None, + align: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, delta=None, domain=None, gauge=None, - ids=None, - idssrc=None, - legend=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - mode=None, - name=None, + legendrank: int|float=None, + legendwidth: int|float=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, number=None, stream=None, title=None, - uid=None, - uirevision=None, - value=None, - visible=None, + uid: str=None, + uirevision: Any=None, + value: int|float=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_isosurface.py b/packages/python/plotly/plotly/graph_objs/_isosurface.py index 0f6ac8a7c6..465a6eac22 100644 --- a/packages/python/plotly/plotly/graph_objs/_isosurface.py +++ b/packages/python/plotly/plotly/graph_objs/_isosurface.py @@ -1743,66 +1743,66 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, + autocolorscale: bool=None, caps=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colorscale=None, + colorscale: str=None, contour=None, - customdata=None, - customdatasrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + flatshading: bool=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - isomax=None, - isomin=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + isomax: int|float=None, + isomin: int|float=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, lighting=None, lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=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, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + value: numpy.ndarray=None, + valuehoverformat: str=None, + valuesrc: str=None, + visible: Any=None, + x: numpy.ndarray=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zhoverformat: str=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_layout.py b/packages/python/plotly/plotly/graph_objs/_layout.py index ce6487b3f4..001e46eb75 100644 --- a/packages/python/plotly/plotly/graph_objs/_layout.py +++ b/packages/python/plotly/plotly/graph_objs/_layout.py @@ -2766,95 +2766,95 @@ def __init__(self, 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, + autosize: bool=None, + autotypenumbers: Any=None, + barcornerradius: Any=None, + bargap: int|float=None, + bargroupgap: int|float=None, + barmode: Any=None, + barnorm: Any=None, + boxgap: int|float=None, + boxgroupgap: int|float=None, + boxmode: Any=None, + calendar: Any=None, + clickmode: Any=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, + colorway: list=None, + computed: Any=None, + datarevision: Any=None, + dragmode: Any=None, + editrevision: Any=None, + extendfunnelareacolors: bool=None, + extendiciclecolors: bool=None, + extendpiecolors: bool=None, + extendsunburstcolors: bool=None, + extendtreemapcolors: bool=None, font=None, - funnelareacolorway=None, - funnelgap=None, - funnelgroupgap=None, - funnelmode=None, + funnelareacolorway: list=None, + funnelgap: int|float=None, + funnelgroupgap: int|float=None, + funnelmode: Any=None, geo=None, grid=None, - height=None, - hiddenlabels=None, - hiddenlabelssrc=None, - hidesources=None, - hoverdistance=None, + height: int|float=None, + hiddenlabels: numpy.ndarray=None, + hiddenlabelssrc: str=None, + hidesources: bool=None, + hoverdistance: int=None, hoverlabel=None, - hovermode=None, - hoversubplots=None, - iciclecolorway=None, + hovermode: Any=None, + hoversubplots: Any=None, + iciclecolorway: list=None, images=None, imagedefaults=None, legend=None, map=None, mapbox=None, margin=None, - meta=None, - metasrc=None, - minreducedheight=None, - minreducedwidth=None, + meta: Any=None, + metasrc: str=None, + minreducedheight: int|float=None, + minreducedwidth: int|float=None, modebar=None, newselection=None, newshape=None, - paper_bgcolor=None, - piecolorway=None, - plot_bgcolor=None, + paper_bgcolor: str=None, + piecolorway: list=None, + plot_bgcolor: str=None, polar=None, - scattergap=None, - scattermode=None, + scattergap: int|float=None, + scattermode: Any=None, scene=None, - selectdirection=None, - selectionrevision=None, + selectdirection: Any=None, + selectionrevision: Any=None, selections=None, selectiondefaults=None, - separators=None, + separators: str=None, shapes=None, shapedefaults=None, - showlegend=None, + showlegend: bool=None, sliders=None, sliderdefaults=None, smith=None, - spikedistance=None, - sunburstcolorway=None, + spikedistance: int=None, + sunburstcolorway: list=None, template=None, ternary=None, title=None, transition=None, - treemapcolorway=None, - uirevision=None, + treemapcolorway: list=None, + uirevision: Any=None, uniformtext=None, updatemenus=None, updatemenudefaults=None, - violingap=None, - violingroupgap=None, - violinmode=None, - waterfallgap=None, - waterfallgroupgap=None, - waterfallmode=None, - width=None, + violingap: int|float=None, + violingroupgap: int|float=None, + violinmode: Any=None, + waterfallgap: int|float=None, + waterfallgroupgap: int|float=None, + waterfallmode: Any=None, + width: int|float=None, xaxis=None, yaxis=None, **kwargs diff --git a/packages/python/plotly/plotly/graph_objs/_mesh3d.py b/packages/python/plotly/plotly/graph_objs/_mesh3d.py index c17d80d94e..d28f1a5788 100644 --- a/packages/python/plotly/plotly/graph_objs/_mesh3d.py +++ b/packages/python/plotly/plotly/graph_objs/_mesh3d.py @@ -2079,76 +2079,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, + alphahull: int|float=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, + colorscale: str=None, contour=None, - customdata=None, - customdatasrc=None, - delaunayaxis=None, - facecolor=None, - facecolorsrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + delaunayaxis: Any=None, + facecolor: numpy.ndarray=None, + facecolorsrc: str=None, + flatshading: bool=None, + hoverinfo: Any=None, + hoverinfosrc: str=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, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + i: numpy.ndarray=None, + ids: numpy.ndarray=None, + idssrc: str=None, + intensity: numpy.ndarray=None, + intensitymode: Any=None, + intensitysrc: str=None, + isrc: str=None, + j: numpy.ndarray=None, + jsrc: str=None, + k: numpy.ndarray=None, + ksrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, lighting=None, lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=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, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + vertexcolor: numpy.ndarray=None, + vertexcolorsrc: str=None, + visible: Any=None, + x: numpy.ndarray=None, + xcalendar: Any=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + ycalendar: Any=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zcalendar: Any=None, + zhoverformat: str=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_ohlc.py b/packages/python/plotly/plotly/graph_objs/_ohlc.py index c1ae3ae3a3..3146aa603f 100644 --- a/packages/python/plotly/plotly/graph_objs/_ohlc.py +++ b/packages/python/plotly/plotly/graph_objs/_ohlc.py @@ -1353,55 +1353,55 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - close=None, - closesrc=None, - customdata=None, - customdatasrc=None, + close: numpy.ndarray=None, + closesrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, decreasing=None, - high=None, - highsrc=None, - hoverinfo=None, - hoverinfosrc=None, + high: numpy.ndarray=None, + highsrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, increasing=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - low=None, - lowsrc=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - open=None, - opensrc=None, - selectedpoints=None, - showlegend=None, + low: numpy.ndarray=None, + lowsrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + open: numpy.ndarray=None, + opensrc: str=None, + selectedpoints: Any=None, + showlegend: bool=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, + text: str=None, + textsrc: str=None, + tickwidth: int|float=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + yaxis: str=None, + yhoverformat: str=None, + zorder: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_parcats.py b/packages/python/plotly/plotly/graph_objs/_parcats.py index 3c8a8fd309..7781644677 100644 --- a/packages/python/plotly/plotly/graph_objs/_parcats.py +++ b/packages/python/plotly/plotly/graph_objs/_parcats.py @@ -726,29 +726,29 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - arrangement=None, - bundlecolors=None, - counts=None, - countssrc=None, + arrangement: Any=None, + bundlecolors: bool=None, + counts: int|float=None, + countssrc: str=None, dimensions=None, dimensiondefaults=None, domain=None, - hoverinfo=None, - hoveron=None, - hovertemplate=None, + hoverinfo: Any=None, + hoveron: Any=None, + hovertemplate: str=None, labelfont=None, legendgrouptitle=None, - legendwidth=None, + legendwidth: int|float=None, line=None, - meta=None, - metasrc=None, - name=None, - sortpaths=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + sortpaths: Any=None, stream=None, tickfont=None, - uid=None, - uirevision=None, - visible=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_parcoords.py b/packages/python/plotly/plotly/graph_objs/_parcoords.py index 852bc72df0..2e8d6d93b8 100644 --- a/packages/python/plotly/plotly/graph_objs/_parcoords.py +++ b/packages/python/plotly/plotly/graph_objs/_parcoords.py @@ -728,31 +728,31 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - customdata=None, - customdatasrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, dimensions=None, dimensiondefaults=None, domain=None, - ids=None, - idssrc=None, - labelangle=None, + ids: numpy.ndarray=None, + idssrc: str=None, + labelangle: int|float=None, labelfont=None, - labelside=None, - legend=None, + labelside: Any=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - meta=None, - metasrc=None, - name=None, + meta: Any=None, + metasrc: str=None, + name: str=None, rangefont=None, stream=None, tickfont=None, - uid=None, - uirevision=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_pie.py b/packages/python/plotly/plotly/graph_objs/_pie.py index 036c2aba41..54225cba00 100644 --- a/packages/python/plotly/plotly/graph_objs/_pie.py +++ b/packages/python/plotly/plotly/graph_objs/_pie.py @@ -1510,59 +1510,59 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - automargin=None, - customdata=None, - customdatasrc=None, - direction=None, - dlabel=None, + automargin: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + direction: Any=None, + dlabel: int|float=None, domain=None, - hole=None, - hoverinfo=None, - hoverinfosrc=None, + hole: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, insidetextfont=None, - insidetextorientation=None, - label0=None, - labels=None, - labelssrc=None, - legend=None, - legendgroup=None, + insidetextorientation: Any=None, + label0: int|float=None, + labels: numpy.ndarray=None, + labelssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, outsidetextfont=None, - pull=None, - pullsrc=None, - rotation=None, - scalegroup=None, - showlegend=None, - sort=None, + pull: int|float=None, + pullsrc: str=None, + rotation: int|float=None, + scalegroup: str=None, + showlegend: bool=None, + sort: bool=None, stream=None, - text=None, + text: numpy.ndarray=None, textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, + textinfo: Any=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, title=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + uid: str=None, + uirevision: Any=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_sankey.py b/packages/python/plotly/plotly/graph_objs/_sankey.py index 8fad0af7f8..3e332f5003 100644 --- a/packages/python/plotly/plotly/graph_objs/_sankey.py +++ b/packages/python/plotly/plotly/graph_objs/_sankey.py @@ -763,32 +763,32 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - arrangement=None, - customdata=None, - customdatasrc=None, + arrangement: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, domain=None, - hoverinfo=None, + hoverinfo: Any=None, hoverlabel=None, - ids=None, - idssrc=None, - legend=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, link=None, - meta=None, - metasrc=None, - name=None, + meta: Any=None, + metasrc: str=None, + name: str=None, node=None, - orientation=None, - selectedpoints=None, + orientation: Any=None, + selectedpoints: Any=None, stream=None, textfont=None, - uid=None, - uirevision=None, - valueformat=None, - valuesuffix=None, - visible=None, + uid: str=None, + uirevision: Any=None, + valueformat: str=None, + valuesuffix: str=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_scatter.py b/packages/python/plotly/plotly/graph_objs/_scatter.py index 4e202cd2ca..b2e0712ed9 100644 --- a/packages/python/plotly/plotly/graph_objs/_scatter.py +++ b/packages/python/plotly/plotly/graph_objs/_scatter.py @@ -2210,80 +2210,80 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - alignmentgroup=None, - cliponaxis=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, + alignmentgroup: str=None, + cliponaxis: bool=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, error_x=None, error_y=None, - fill=None, - fillcolor=None, + fill: Any=None, + fillcolor: str=None, fillgradient=None, fillpattern=None, - groupnorm=None, - hoverinfo=None, - hoverinfosrc=None, + groupnorm: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - offsetgroup=None, - opacity=None, - orientation=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + offsetgroup: str=None, + opacity: int|float=None, + orientation: Any=None, selected=None, - selectedpoints=None, - showlegend=None, - stackgaps=None, - stackgroup=None, + selectedpoints: Any=None, + showlegend: bool=None, + stackgaps: Any=None, + stackgroup: str=None, stream=None, - text=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=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, + visible: Any=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + zorder: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_scatter3d.py b/packages/python/plotly/plotly/graph_objs/_scatter3d.py index 1f7ac8cb1b..7d4cbce7d3 100644 --- a/packages/python/plotly/plotly/graph_objs/_scatter3d.py +++ b/packages/python/plotly/plotly/graph_objs/_scatter3d.py @@ -1607,61 +1607,61 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - connectgaps=None, - customdata=None, - customdatasrc=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, error_x=None, error_y=None, error_z=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, projection=None, - scene=None, - showlegend=None, + scene: str=None, + showlegend: bool=None, stream=None, - surfaceaxis=None, - surfacecolor=None, - text=None, + surfaceaxis: Any=None, + surfacecolor: str=None, + text: str=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, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xcalendar: Any=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + ycalendar: Any=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zcalendar: Any=None, + zhoverformat: str=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_scattercarpet.py b/packages/python/plotly/plotly/graph_objs/_scattercarpet.py index 56fd53e35d..452c96e389 100644 --- a/packages/python/plotly/plotly/graph_objs/_scattercarpet.py +++ b/packages/python/plotly/plotly/graph_objs/_scattercarpet.py @@ -1468,56 +1468,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, + a: numpy.ndarray=None, + asrc: str=None, + b: numpy.ndarray=None, + bsrc: str=None, + carpet: str=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - xaxis=None, - yaxis=None, - zorder=None, + visible: Any=None, + xaxis: str=None, + yaxis: str=None, + zorder: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_scattergeo.py b/packages/python/plotly/plotly/graph_objs/_scattergeo.py index 3ea9462321..644af06cfa 100644 --- a/packages/python/plotly/plotly/graph_objs/_scattergeo.py +++ b/packages/python/plotly/plotly/graph_objs/_scattergeo.py @@ -1489,57 +1489,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, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + featureidkey: str=None, + fill: Any=None, + fillcolor: str=None, + geo: str=None, + geojson: Any=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + lat: numpy.ndarray=None, + latsrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - locationmode=None, - locations=None, - locationssrc=None, - lon=None, - lonsrc=None, + locationmode: Any=None, + locations: numpy.ndarray=None, + locationssrc: str=None, + lon: numpy.ndarray=None, + lonsrc: str=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_scattergl.py b/packages/python/plotly/plotly/graph_objs/_scattergl.py index 45303c7a50..68faeef063 100644 --- a/packages/python/plotly/plotly/graph_objs/_scattergl.py +++ b/packages/python/plotly/plotly/graph_objs/_scattergl.py @@ -1842,69 +1842,69 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - dx=None, - dy=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dx: int|float=None, + dy: int|float=None, error_x=None, error_y=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=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, + visible: Any=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xcalendar: Any=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + ycalendar: Any=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_scattermap.py b/packages/python/plotly/plotly/graph_objs/_scattermap.py index 8e58d60dcf..00dfb27ea3 100644 --- a/packages/python/plotly/plotly/graph_objs/_scattermap.py +++ b/packages/python/plotly/plotly/graph_objs/_scattermap.py @@ -1371,53 +1371,53 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - below=None, + below: str=None, cluster=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + lat: numpy.ndarray=None, + latsrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - lon=None, - lonsrc=None, + lon: numpy.ndarray=None, + lonsrc: str=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, + subplot: str=None, + text: str=None, textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_scattermapbox.py b/packages/python/plotly/plotly/graph_objs/_scattermapbox.py index 2ae65018f2..916f973ccd 100644 --- a/packages/python/plotly/plotly/graph_objs/_scattermapbox.py +++ b/packages/python/plotly/plotly/graph_objs/_scattermapbox.py @@ -1382,53 +1382,53 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - below=None, + below: str=None, cluster=None, - connectgaps=None, - customdata=None, - customdatasrc=None, - fill=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - lat=None, - latsrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + lat: numpy.ndarray=None, + latsrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - lon=None, - lonsrc=None, + lon: numpy.ndarray=None, + lonsrc: str=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, + subplot: str=None, + text: str=None, textfont=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_scatterpolar.py b/packages/python/plotly/plotly/graph_objs/_scatterpolar.py index 6588f99333..31302ef0df 100644 --- a/packages/python/plotly/plotly/graph_objs/_scatterpolar.py +++ b/packages/python/plotly/plotly/graph_objs/_scatterpolar.py @@ -1537,59 +1537,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, + cliponaxis: bool=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dr: int|float=None, + dtheta: int|float=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - r=None, - r0=None, - rsrc=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, + r: numpy.ndarray=None, + r0: Any=None, + rsrc: str=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, + subplot: str=None, + text: str=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, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + theta: numpy.ndarray=None, + theta0: Any=None, + thetasrc: str=None, + thetaunit: Any=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_scatterpolargl.py b/packages/python/plotly/plotly/graph_objs/_scatterpolargl.py index 6a440653e0..1e833d080b 100644 --- a/packages/python/plotly/plotly/graph_objs/_scatterpolargl.py +++ b/packages/python/plotly/plotly/graph_objs/_scatterpolargl.py @@ -1500,57 +1500,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, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + dr: int|float=None, + dtheta: int|float=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - r=None, - r0=None, - rsrc=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, + r: numpy.ndarray=None, + r0: Any=None, + rsrc: str=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, + subplot: str=None, + text: str=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, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + theta: numpy.ndarray=None, + theta0: Any=None, + thetasrc: str=None, + thetaunit: Any=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_scattersmith.py b/packages/python/plotly/plotly/graph_objs/_scattersmith.py index 5355c3239a..e8dbc4cf28 100644 --- a/packages/python/plotly/plotly/graph_objs/_scattersmith.py +++ b/packages/python/plotly/plotly/graph_objs/_scattersmith.py @@ -1421,54 +1421,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, + cliponaxis: bool=None, + connectgaps: bool=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=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, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + imag: numpy.ndarray=None, + imagsrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, - real=None, - realsrc=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, + real: numpy.ndarray=None, + realsrc: str=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - text=None, + subplot: str=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_scatterternary.py b/packages/python/plotly/plotly/graph_objs/_scatterternary.py index 7bdc4e7074..56a7189758 100644 --- a/packages/python/plotly/plotly/graph_objs/_scatterternary.py +++ b/packages/python/plotly/plotly/graph_objs/_scatterternary.py @@ -1511,57 +1511,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, + a: numpy.ndarray=None, + asrc: str=None, + b: numpy.ndarray=None, + bsrc: str=None, + c: numpy.ndarray=None, + cliponaxis: bool=None, + connectgaps: bool=None, + csrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fill: Any=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, marker=None, - meta=None, - metasrc=None, - mode=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + mode: Any=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - subplot=None, - sum=None, - text=None, + subplot: str=None, + sum: int|float=None, + text: str=None, textfont=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_splom.py b/packages/python/plotly/plotly/graph_objs/_splom.py index 12416dcf79..b60fa546e4 100644 --- a/packages/python/plotly/plotly/graph_objs/_splom.py +++ b/packages/python/plotly/plotly/graph_objs/_splom.py @@ -1204,46 +1204,46 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - customdata=None, - customdatasrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, diagonal=None, dimensions=None, dimensiondefaults=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, marker=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, selected=None, - selectedpoints=None, - showlegend=None, - showlowerhalf=None, - showupperhalf=None, + selectedpoints: Any=None, + showlegend: bool=None, + showlowerhalf: bool=None, + showupperhalf: bool=None, stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, unselected=None, - visible=None, - xaxes=None, - xhoverformat=None, - yaxes=None, - yhoverformat=None, + visible: Any=None, + xaxes: list=None, + xhoverformat: str=None, + yaxes: list=None, + yhoverformat: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_streamtube.py b/packages/python/plotly/plotly/graph_objs/_streamtube.py index f19dbd9004..fddfabe913 100644 --- a/packages/python/plotly/plotly/graph_objs/_streamtube.py +++ b/packages/python/plotly/plotly/graph_objs/_streamtube.py @@ -1740,65 +1740,65 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - customdata=None, - customdatasrc=None, - hoverinfo=None, - hoverinfosrc=None, + colorscale: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=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, + maxdisplayed: int=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=None, + sizeref: int|float=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, + text: str=None, + u: numpy.ndarray=None, + uhoverformat: str=None, + uid: str=None, + uirevision: Any=None, + usrc: str=None, + v: numpy.ndarray=None, + vhoverformat: str=None, + visible: Any=None, + vsrc: str=None, + w: numpy.ndarray=None, + whoverformat: str=None, + wsrc: str=None, + x: numpy.ndarray=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zhoverformat: str=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_sunburst.py b/packages/python/plotly/plotly/graph_objs/_sunburst.py index fa0f36b2b8..c26c2cecb4 100644 --- a/packages/python/plotly/plotly/graph_objs/_sunburst.py +++ b/packages/python/plotly/plotly/graph_objs/_sunburst.py @@ -1409,54 +1409,54 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - branchvalues=None, - count=None, - customdata=None, - customdatasrc=None, + branchvalues: Any=None, + count: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, domain=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, insidetextfont=None, - insidetextorientation=None, - labels=None, - labelssrc=None, + insidetextorientation: Any=None, + labels: numpy.ndarray=None, + labelssrc: str=None, leaf=None, - legend=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, + legendrank: int|float=None, + legendwidth: int|float=None, + level: Any=None, marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + maxdepth: int=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, outsidetextfont=None, - parents=None, - parentssrc=None, + parents: numpy.ndarray=None, + parentssrc: str=None, root=None, - rotation=None, - sort=None, + rotation: int|float=None, + sort: bool=None, stream=None, - text=None, + text: numpy.ndarray=None, textfont=None, - textinfo=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + textinfo: Any=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, + uid: str=None, + uirevision: Any=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_surface.py b/packages/python/plotly/plotly/graph_objs/_surface.py index 2be5d967cc..fdbdd4b65d 100644 --- a/packages/python/plotly/plotly/graph_objs/_surface.py +++ b/packages/python/plotly/plotly/graph_objs/_surface.py @@ -1719,64 +1719,64 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - connectgaps=None, + colorscale: str=None, + connectgaps: bool=None, contours=None, - customdata=None, - customdatasrc=None, - hidesurface=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + hidesurface: bool=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, lighting=None, lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - opacityscale=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + opacityscale: Any=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=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, + surfacecolor: numpy.ndarray=None, + surfacecolorsrc: str=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + x: numpy.ndarray=None, + xcalendar: Any=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + ycalendar: Any=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zcalendar: Any=None, + zhoverformat: str=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_table.py b/packages/python/plotly/plotly/graph_objs/_table.py index 1610dcd25a..07ccdbdc18 100644 --- a/packages/python/plotly/plotly/graph_objs/_table.py +++ b/packages/python/plotly/plotly/graph_objs/_table.py @@ -716,30 +716,30 @@ def _prop_descriptions(self): def __init__(self, arg=None, cells=None, - columnorder=None, - columnordersrc=None, - columnwidth=None, - columnwidthsrc=None, - customdata=None, - customdatasrc=None, + columnorder: numpy.ndarray=None, + columnordersrc: str=None, + columnwidth: int|float=None, + columnwidthsrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, domain=None, header=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - ids=None, - idssrc=None, - legend=None, + ids: numpy.ndarray=None, + idssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - meta=None, - metasrc=None, - name=None, + legendrank: int|float=None, + legendwidth: int|float=None, + meta: Any=None, + metasrc: str=None, + name: str=None, stream=None, - uid=None, - uirevision=None, - visible=None, + uid: str=None, + uirevision: Any=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_treemap.py b/packages/python/plotly/plotly/graph_objs/_treemap.py index 240af127f0..a03bac3944 100644 --- a/packages/python/plotly/plotly/graph_objs/_treemap.py +++ b/packages/python/plotly/plotly/graph_objs/_treemap.py @@ -1394,54 +1394,54 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - branchvalues=None, - count=None, - customdata=None, - customdatasrc=None, + branchvalues: Any=None, + count: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, domain=None, - hoverinfo=None, - hoverinfosrc=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, insidetextfont=None, - labels=None, - labelssrc=None, - legend=None, + labels: numpy.ndarray=None, + labelssrc: str=None, + legend: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, - level=None, + legendrank: int|float=None, + legendwidth: int|float=None, + level: Any=None, marker=None, - maxdepth=None, - meta=None, - metasrc=None, - name=None, - opacity=None, + maxdepth: int=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, outsidetextfont=None, - parents=None, - parentssrc=None, + parents: numpy.ndarray=None, + parentssrc: str=None, pathbar=None, root=None, - sort=None, + sort: bool=None, stream=None, - text=None, + text: numpy.ndarray=None, textfont=None, - textinfo=None, - textposition=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, + textinfo: Any=None, + textposition: Any=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=None, tiling=None, - uid=None, - uirevision=None, - values=None, - valuessrc=None, - visible=None, + uid: str=None, + uirevision: Any=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_violin.py b/packages/python/plotly/plotly/graph_objs/_violin.py index 97ef3643e6..dbbda690a8 100644 --- a/packages/python/plotly/plotly/graph_objs/_violin.py +++ b/packages/python/plotly/plotly/graph_objs/_violin.py @@ -1813,67 +1813,67 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - alignmentgroup=None, - bandwidth=None, + alignmentgroup: str=None, + bandwidth: int|float=None, box=None, - customdata=None, - customdatasrc=None, - fillcolor=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + fillcolor: str=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hoveron=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - jitter=None, - legend=None, - legendgroup=None, + hoveron: Any=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + jitter: int|float=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=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, + meta: Any=None, + metasrc: str=None, + name: str=None, + offsetgroup: str=None, + opacity: int|float=None, + orientation: Any=None, + pointpos: int|float=None, + points: Any=None, + quartilemethod: Any=None, + scalegroup: str=None, + scalemode: Any=None, selected=None, - selectedpoints=None, - showlegend=None, - side=None, - span=None, - spanmode=None, + selectedpoints: Any=None, + showlegend: bool=None, + side: Any=None, + span: list=None, + spanmode: Any=None, stream=None, - text=None, - textsrc=None, - uid=None, - uirevision=None, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=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, + visible: Any=None, + width: int|float=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + yhoverformat: str=None, + ysrc: str=None, + zorder: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_volume.py b/packages/python/plotly/plotly/graph_objs/_volume.py index 0a318e9397..ef188bef97 100644 --- a/packages/python/plotly/plotly/graph_objs/_volume.py +++ b/packages/python/plotly/plotly/graph_objs/_volume.py @@ -1781,67 +1781,67 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, + autocolorscale: bool=None, caps=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colorscale=None, + colorscale: str=None, contour=None, - customdata=None, - customdatasrc=None, - flatshading=None, - hoverinfo=None, - hoverinfosrc=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + flatshading: bool=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, - isomax=None, - isomin=None, - legend=None, - legendgroup=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, + isomax: int|float=None, + isomin: int|float=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, lighting=None, lightposition=None, - meta=None, - metasrc=None, - name=None, - opacity=None, - opacityscale=None, - reversescale=None, - scene=None, - showlegend=None, - showscale=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + opacity: int|float=None, + opacityscale: Any=None, + reversescale: bool=None, + scene: str=None, + showlegend: bool=None, + showscale: bool=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, + text: str=None, + textsrc: str=None, + uid: str=None, + uirevision: Any=None, + value: numpy.ndarray=None, + valuehoverformat: str=None, + valuesrc: str=None, + visible: Any=None, + x: numpy.ndarray=None, + xhoverformat: str=None, + xsrc: str=None, + y: numpy.ndarray=None, + yhoverformat: str=None, + ysrc: str=None, + z: numpy.ndarray=None, + zhoverformat: str=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/_waterfall.py b/packages/python/plotly/plotly/graph_objs/_waterfall.py index 31cd1d8e15..218ff08ab3 100644 --- a/packages/python/plotly/plotly/graph_objs/_waterfall.py +++ b/packages/python/plotly/plotly/graph_objs/_waterfall.py @@ -2087,79 +2087,79 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - alignmentgroup=None, - base=None, - cliponaxis=None, + alignmentgroup: str=None, + base: int|float=None, + cliponaxis: bool=None, connector=None, - constraintext=None, - customdata=None, - customdatasrc=None, + constraintext: Any=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, decreasing=None, - dx=None, - dy=None, - hoverinfo=None, - hoverinfosrc=None, + dx: int|float=None, + dy: int|float=None, + hoverinfo: Any=None, + hoverinfosrc: str=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - hovertext=None, - hovertextsrc=None, - ids=None, - idssrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + hovertext: str=None, + hovertextsrc: str=None, + ids: numpy.ndarray=None, + idssrc: str=None, increasing=None, - insidetextanchor=None, + insidetextanchor: Any=None, insidetextfont=None, - legend=None, - legendgroup=None, + legend: str=None, + legendgroup: str=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, + legendrank: int|float=None, + legendwidth: int|float=None, + measure: numpy.ndarray=None, + measuresrc: str=None, + meta: Any=None, + metasrc: str=None, + name: str=None, + offset: int|float=None, + offsetgroup: str=None, + offsetsrc: str=None, + opacity: int|float=None, + orientation: Any=None, outsidetextfont=None, - selectedpoints=None, - showlegend=None, + selectedpoints: Any=None, + showlegend: bool=None, stream=None, - text=None, - textangle=None, + text: str=None, + textangle: int|float=None, textfont=None, - textinfo=None, - textposition=None, - textpositionsrc=None, - textsrc=None, - texttemplate=None, - texttemplatesrc=None, + textinfo: Any=None, + textposition: Any=None, + textpositionsrc: str=None, + textsrc: str=None, + texttemplate: str=None, + texttemplatesrc: str=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, + uid: str=None, + uirevision: Any=None, + visible: Any=None, + width: int|float=None, + widthsrc: str=None, + x: numpy.ndarray=None, + x0: Any=None, + xaxis: str=None, + xhoverformat: str=None, + xperiod: Any=None, + xperiod0: Any=None, + xperiodalignment: Any=None, + xsrc: str=None, + y: numpy.ndarray=None, + y0: Any=None, + yaxis: str=None, + yhoverformat: str=None, + yperiod: Any=None, + yperiod0: Any=None, + yperiodalignment: Any=None, + ysrc: str=None, + zorder: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/_error_x.py b/packages/python/plotly/plotly/graph_objs/bar/_error_x.py index 3f72f0bec1..a1b5fb9ac1 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/_error_x.py +++ b/packages/python/plotly/plotly/graph_objs/bar/_error_x.py @@ -394,21 +394,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: numpy.ndarray=None, + arrayminus: numpy.ndarray=None, + arrayminussrc: str=None, + arraysrc: str=None, + color: str=None, + copy_ystyle: bool=None, + symmetric: bool=None, + thickness: int|float=None, + traceref: int=None, + tracerefminus: int=None, + type: Any=None, + value: int|float=None, + valueminus: int|float=None, + visible: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/_error_y.py b/packages/python/plotly/plotly/graph_objs/bar/_error_y.py index 42616fd9a0..00e12027af 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/_error_y.py +++ b/packages/python/plotly/plotly/graph_objs/bar/_error_y.py @@ -374,20 +374,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: numpy.ndarray=None, + arrayminus: numpy.ndarray=None, + arrayminussrc: str=None, + arraysrc: str=None, + color: str=None, + symmetric: bool=None, + thickness: int|float=None, + traceref: int=None, + tracerefminus: int=None, + type: Any=None, + value: int|float=None, + valueminus: int|float=None, + visible: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/bar/_hoverlabel.py index a0b0af65f9..ee613ebdcd 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/bar/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/_insidetextfont.py b/packages/python/plotly/plotly/graph_objs/bar/_insidetextfont.py index 3e92ac3282..d9653b86a2 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/_insidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/bar/_insidetextfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/bar/_legendgrouptitle.py index 705bf96070..daaa285cb6 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/bar/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/_marker.py b/packages/python/plotly/plotly/graph_objs/bar/_marker.py index 6e5f4dd8e9..fe5de44296 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/bar/_marker.py @@ -538,23 +538,23 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, - cornerradius=None, + colorscale: str=None, + colorsrc: str=None, + cornerradius: Any=None, line=None, - opacity=None, - opacitysrc=None, + opacity: int|float=None, + opacitysrc: str=None, pattern=None, - reversescale=None, - showscale=None, + reversescale: bool=None, + showscale: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/_outsidetextfont.py b/packages/python/plotly/plotly/graph_objs/bar/_outsidetextfont.py index bb0359a06b..111612c169 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/_outsidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/bar/_outsidetextfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/_stream.py b/packages/python/plotly/plotly/graph_objs/bar/_stream.py index b56ca69f42..11177f9e0e 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/bar/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/_textfont.py b/packages/python/plotly/plotly/graph_objs/bar/_textfont.py index 1735bd549f..5e2b2d9854 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/bar/_textfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/bar/hoverlabel/_font.py index 9b8728bbcd..029b21c7c3 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/bar/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/bar/legendgrouptitle/_font.py index a016e599f6..1241bcab81 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/bar/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/bar/marker/_colorbar.py index 06a558c628..de6d15de74 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/bar/marker/_colorbar.py @@ -1395,55 +1395,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/_line.py b/packages/python/plotly/plotly/graph_objs/bar/marker/_line.py index 23af43e93e..3c222531a8 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/bar/marker/_line.py @@ -417,18 +417,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, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, + colorscale: str=None, + colorsrc: str=None, + reversescale: bool=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/_pattern.py b/packages/python/plotly/plotly/graph_objs/bar/marker/_pattern.py index adf8e1d5f4..d06fb4b6a3 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/marker/_pattern.py +++ b/packages/python/plotly/plotly/graph_objs/bar/marker/_pattern.py @@ -334,18 +334,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, + bgcolorsrc: str=None, + fgcolor: str=None, + fgcolorsrc: str=None, + fgopacity: int|float=None, + fillmode: Any=None, + shape: Any=None, + shapesrc: str=None, + size: int|float=None, + sizesrc: str=None, + solidity: int|float=None, + soliditysrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_tickfont.py index fd13a7dbe1..99790dd70c 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_tickformatstop.py index 8c2061b685..8a7690f958 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_title.py index 049b5a7573..78b3f79772 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/title/_font.py index 93dd0d032c..335878776e 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/bar/selected/_marker.py index e5f49bd202..f3dc43a1d9 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/bar/selected/_marker.py @@ -68,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, + color: str=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/selected/_textfont.py b/packages/python/plotly/plotly/graph_objs/bar/selected/_textfont.py index 76df78e4b5..6b4a636261 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/selected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/bar/selected/_textfont.py @@ -46,7 +46,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/bar/unselected/_marker.py index 96aa2a4fe2..e73fbdc11e 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/bar/unselected/_marker.py @@ -72,8 +72,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, + color: str=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/bar/unselected/_textfont.py b/packages/python/plotly/plotly/graph_objs/bar/unselected/_textfont.py index 7875335240..693ee98c18 100644 --- a/packages/python/plotly/plotly/graph_objs/bar/unselected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/bar/unselected/_textfont.py @@ -48,7 +48,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/barpolar/_hoverlabel.py index eeb503e627..5c2658ed75 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/barpolar/_legendgrouptitle.py index d96a3c6d26..0c89c514f3 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/_marker.py b/packages/python/plotly/plotly/graph_objs/barpolar/_marker.py index 0c23fa3ada..27fac0d1e4 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/_marker.py @@ -509,22 +509,22 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, + colorscale: str=None, + colorsrc: str=None, line=None, - opacity=None, - opacitysrc=None, + opacity: int|float=None, + opacitysrc: str=None, pattern=None, - reversescale=None, - showscale=None, + reversescale: bool=None, + showscale: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/_stream.py b/packages/python/plotly/plotly/graph_objs/barpolar/_stream.py index a4c72f329a..a3c9b502f9 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/barpolar/hoverlabel/_font.py index 723d2bc624..2ff3fdeeda 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/barpolar/legendgrouptitle/_font.py index ea7f65353e..64a816c47c 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/barpolar/marker/_colorbar.py index 4716c4f4f4..c13d3f7d82 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/_line.py b/packages/python/plotly/plotly/graph_objs/barpolar/marker/_line.py index d7dd3c3337..89bfc5d40a 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/marker/_line.py @@ -417,18 +417,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, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, + colorscale: str=None, + colorsrc: str=None, + reversescale: bool=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/_pattern.py b/packages/python/plotly/plotly/graph_objs/barpolar/marker/_pattern.py index 863c949975..1a08adf76d 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/marker/_pattern.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/marker/_pattern.py @@ -334,18 +334,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, + bgcolorsrc: str=None, + fgcolor: str=None, + fgcolorsrc: str=None, + fgopacity: int|float=None, + fillmode: Any=None, + shape: Any=None, + shapesrc: str=None, + size: int|float=None, + sizesrc: str=None, + solidity: int|float=None, + soliditysrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_tickfont.py index 3f56f5311a..7701698c43 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_tickformatstop.py index ed77d12eb9..1916d1e59e 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_title.py index 6baac13be4..e20cdc6e0a 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/title/_font.py index e9345d395e..5b065ff1eb 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/barpolar/selected/_marker.py index 969cd73b49..ff5c08b7a9 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/selected/_marker.py @@ -68,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, + color: str=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/selected/_textfont.py b/packages/python/plotly/plotly/graph_objs/barpolar/selected/_textfont.py index a1b5d8a000..ae6fdd97c0 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/selected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/selected/_textfont.py @@ -46,7 +46,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/barpolar/unselected/_marker.py index 5158ac88f0..702d5bdb6e 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/unselected/_marker.py @@ -72,8 +72,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, + color: str=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/unselected/_textfont.py b/packages/python/plotly/plotly/graph_objs/barpolar/unselected/_textfont.py index 87b98f415f..25d00e21e7 100644 --- a/packages/python/plotly/plotly/graph_objs/barpolar/unselected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/barpolar/unselected/_textfont.py @@ -48,7 +48,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/box/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/box/_hoverlabel.py index d9fe2818ba..f60959ec6e 100644 --- a/packages/python/plotly/plotly/graph_objs/box/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/box/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/box/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/box/_legendgrouptitle.py index d220d6865c..0e0d84b72c 100644 --- a/packages/python/plotly/plotly/graph_objs/box/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/box/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/box/_line.py b/packages/python/plotly/plotly/graph_objs/box/_line.py index 57aedda0f1..e9c376f189 100644 --- a/packages/python/plotly/plotly/graph_objs/box/_line.py +++ b/packages/python/plotly/plotly/graph_objs/box/_line.py @@ -68,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/box/_marker.py b/packages/python/plotly/plotly/graph_objs/box/_marker.py index 568a9ef0a2..1af320a482 100644 --- a/packages/python/plotly/plotly/graph_objs/box/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/box/_marker.py @@ -289,13 +289,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - angle=None, - color=None, + angle: int|float=None, + color: str=None, line=None, - opacity=None, - outliercolor=None, - size=None, - symbol=None, + opacity: int|float=None, + outliercolor: str=None, + size: int|float=None, + symbol: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/box/_stream.py b/packages/python/plotly/plotly/graph_objs/box/_stream.py index 9b2e41005a..f93a89da98 100644 --- a/packages/python/plotly/plotly/graph_objs/box/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/box/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/box/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/box/hoverlabel/_font.py index 2939f58ff1..7d82f06d70 100644 --- a/packages/python/plotly/plotly/graph_objs/box/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/box/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/box/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/box/legendgrouptitle/_font.py index 316ab74c12..4fa8a66192 100644 --- a/packages/python/plotly/plotly/graph_objs/box/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/box/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/box/marker/_line.py b/packages/python/plotly/plotly/graph_objs/box/marker/_line.py index 7964cb40b4..0b79471713 100644 --- a/packages/python/plotly/plotly/graph_objs/box/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/box/marker/_line.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - outliercolor=None, - outlierwidth=None, - width=None, + color: str=None, + outliercolor: str=None, + outlierwidth: int|float=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/box/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/box/selected/_marker.py index 41b490c070..c94d7a4460 100644 --- a/packages/python/plotly/plotly/graph_objs/box/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/box/selected/_marker.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/box/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/box/unselected/_marker.py index 6faa9bbb9d..2d679fe6ab 100644 --- a/packages/python/plotly/plotly/graph_objs/box/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/box/unselected/_marker.py @@ -96,9 +96,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/_decreasing.py b/packages/python/plotly/plotly/graph_objs/candlestick/_decreasing.py index 853c0a3aa6..a51e00f93e 100644 --- a/packages/python/plotly/plotly/graph_objs/candlestick/_decreasing.py +++ b/packages/python/plotly/plotly/graph_objs/candlestick/_decreasing.py @@ -74,7 +74,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fillcolor=None, + fillcolor: str=None, line=None, **kwargs ): diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/candlestick/_hoverlabel.py index f6855ac67c..db712876b4 100644 --- a/packages/python/plotly/plotly/graph_objs/candlestick/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/candlestick/_hoverlabel.py @@ -282,16 +282,16 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, - split=None, + namelength: int=None, + namelengthsrc: str=None, + split: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/_increasing.py b/packages/python/plotly/plotly/graph_objs/candlestick/_increasing.py index 82836ab251..2005b76515 100644 --- a/packages/python/plotly/plotly/graph_objs/candlestick/_increasing.py +++ b/packages/python/plotly/plotly/graph_objs/candlestick/_increasing.py @@ -74,7 +74,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fillcolor=None, + fillcolor: str=None, line=None, **kwargs ): diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/candlestick/_legendgrouptitle.py index 3e8b0bb215..eb2f4a4a4f 100644 --- a/packages/python/plotly/plotly/graph_objs/candlestick/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/candlestick/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/_line.py b/packages/python/plotly/plotly/graph_objs/candlestick/_line.py index f59015c868..5e2636055b 100644 --- a/packages/python/plotly/plotly/graph_objs/candlestick/_line.py +++ b/packages/python/plotly/plotly/graph_objs/candlestick/_line.py @@ -47,7 +47,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - width=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/_stream.py b/packages/python/plotly/plotly/graph_objs/candlestick/_stream.py index 168b77aab3..31e6632158 100644 --- a/packages/python/plotly/plotly/graph_objs/candlestick/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/candlestick/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/decreasing/_line.py b/packages/python/plotly/plotly/graph_objs/candlestick/decreasing/_line.py index bf2646eeed..aa57faa586 100644 --- a/packages/python/plotly/plotly/graph_objs/candlestick/decreasing/_line.py +++ b/packages/python/plotly/plotly/graph_objs/candlestick/decreasing/_line.py @@ -68,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/candlestick/hoverlabel/_font.py index 841c120df9..5a3d89cc63 100644 --- a/packages/python/plotly/plotly/graph_objs/candlestick/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/candlestick/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/increasing/_line.py b/packages/python/plotly/plotly/graph_objs/candlestick/increasing/_line.py index 614f572e0f..1f1f27af5c 100644 --- a/packages/python/plotly/plotly/graph_objs/candlestick/increasing/_line.py +++ b/packages/python/plotly/plotly/graph_objs/candlestick/increasing/_line.py @@ -68,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/candlestick/legendgrouptitle/_font.py index 3a4ce934d4..35bdf91fad 100644 --- a/packages/python/plotly/plotly/graph_objs/candlestick/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/candlestick/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/carpet/_aaxis.py b/packages/python/plotly/plotly/graph_objs/carpet/_aaxis.py index 377faa5319..af48f87e2e 100644 --- a/packages/python/plotly/plotly/graph_objs/carpet/_aaxis.py +++ b/packages/python/plotly/plotly/graph_objs/carpet/_aaxis.py @@ -1538,64 +1538,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, + arraydtick: int=None, + arraytick0: int=None, + autorange: Any=None, + autotypenumbers: Any=None, + categoryarray: numpy.ndarray=None, + categoryarraysrc: str=None, + categoryorder: Any=None, + cheatertype: Any=None, + color: str=None, + dtick: int|float=None, + endline: bool=None, + endlinecolor: str=None, + endlinewidth: int|float=None, + exponentformat: Any=None, + fixedrange: bool=None, + gridcolor: str=None, + griddash: str=None, + gridwidth: int|float=None, + labelalias: Any=None, + labelpadding: int=None, + labelprefix: str=None, + labelsuffix: str=None, + linecolor: str=None, + linewidth: int|float=None, + minexponent: int|float=None, + minorgridcolor: str=None, + minorgridcount: int=None, + minorgriddash: str=None, + minorgridwidth: int|float=None, + nticks: int=None, + range: list=None, + rangemode: Any=None, + separatethousands: bool=None, + showexponent: Any=None, + showgrid: bool=None, + showline: bool=None, + showticklabels: Any=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + smoothing: int|float=None, + startline: bool=None, + startlinecolor: str=None, + startlinewidth: int|float=None, + tick0: int|float=None, + tickangle: int|float=None, tickfont=None, - tickformat=None, + tickformat: str=None, tickformatstops=None, tickformatstopdefaults=None, - tickmode=None, - tickprefix=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, + tickmode: Any=None, + tickprefix: str=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, title=None, - type=None, + type: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/carpet/_baxis.py b/packages/python/plotly/plotly/graph_objs/carpet/_baxis.py index 3abe6066c7..59623ac058 100644 --- a/packages/python/plotly/plotly/graph_objs/carpet/_baxis.py +++ b/packages/python/plotly/plotly/graph_objs/carpet/_baxis.py @@ -1538,64 +1538,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, + arraydtick: int=None, + arraytick0: int=None, + autorange: Any=None, + autotypenumbers: Any=None, + categoryarray: numpy.ndarray=None, + categoryarraysrc: str=None, + categoryorder: Any=None, + cheatertype: Any=None, + color: str=None, + dtick: int|float=None, + endline: bool=None, + endlinecolor: str=None, + endlinewidth: int|float=None, + exponentformat: Any=None, + fixedrange: bool=None, + gridcolor: str=None, + griddash: str=None, + gridwidth: int|float=None, + labelalias: Any=None, + labelpadding: int=None, + labelprefix: str=None, + labelsuffix: str=None, + linecolor: str=None, + linewidth: int|float=None, + minexponent: int|float=None, + minorgridcolor: str=None, + minorgridcount: int=None, + minorgriddash: str=None, + minorgridwidth: int|float=None, + nticks: int=None, + range: list=None, + rangemode: Any=None, + separatethousands: bool=None, + showexponent: Any=None, + showgrid: bool=None, + showline: bool=None, + showticklabels: Any=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + smoothing: int|float=None, + startline: bool=None, + startlinecolor: str=None, + startlinewidth: int|float=None, + tick0: int|float=None, + tickangle: int|float=None, tickfont=None, - tickformat=None, + tickformat: str=None, tickformatstops=None, tickformatstopdefaults=None, - tickmode=None, - tickprefix=None, - ticksuffix=None, - ticktext=None, - ticktextsrc=None, - tickvals=None, - tickvalssrc=None, + tickmode: Any=None, + tickprefix: str=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, title=None, - type=None, + type: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/carpet/_font.py b/packages/python/plotly/plotly/graph_objs/carpet/_font.py index fc27a51179..33bc9e2bf0 100644 --- a/packages/python/plotly/plotly/graph_objs/carpet/_font.py +++ b/packages/python/plotly/plotly/graph_objs/carpet/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/carpet/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/carpet/_legendgrouptitle.py index c39d4ffdac..7fdcdab47d 100644 --- a/packages/python/plotly/plotly/graph_objs/carpet/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/carpet/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/carpet/_stream.py b/packages/python/plotly/plotly/graph_objs/carpet/_stream.py index 8d5f9b9b91..9c4037f91e 100644 --- a/packages/python/plotly/plotly/graph_objs/carpet/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/carpet/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/carpet/aaxis/_tickfont.py b/packages/python/plotly/plotly/graph_objs/carpet/aaxis/_tickfont.py index 90dc3c3a85..706b3ecd08 100644 --- a/packages/python/plotly/plotly/graph_objs/carpet/aaxis/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/carpet/aaxis/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/carpet/aaxis/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/carpet/aaxis/_tickformatstop.py index 18b5f55953..a4c7172ca7 100644 --- a/packages/python/plotly/plotly/graph_objs/carpet/aaxis/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/carpet/aaxis/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/carpet/aaxis/_title.py b/packages/python/plotly/plotly/graph_objs/carpet/aaxis/_title.py index 2f60bdf527..48fa49bc38 100644 --- a/packages/python/plotly/plotly/graph_objs/carpet/aaxis/_title.py +++ b/packages/python/plotly/plotly/graph_objs/carpet/aaxis/_title.py @@ -93,8 +93,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - offset=None, - text=None, + offset: int|float=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/carpet/aaxis/title/_font.py b/packages/python/plotly/plotly/graph_objs/carpet/aaxis/title/_font.py index 4e0dd7c0d8..d054684092 100644 --- a/packages/python/plotly/plotly/graph_objs/carpet/aaxis/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/carpet/aaxis/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/carpet/baxis/_tickfont.py b/packages/python/plotly/plotly/graph_objs/carpet/baxis/_tickfont.py index b29b601172..c2ca5c60d0 100644 --- a/packages/python/plotly/plotly/graph_objs/carpet/baxis/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/carpet/baxis/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/carpet/baxis/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/carpet/baxis/_tickformatstop.py index 8d95704fda..6f1344c354 100644 --- a/packages/python/plotly/plotly/graph_objs/carpet/baxis/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/carpet/baxis/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/carpet/baxis/_title.py b/packages/python/plotly/plotly/graph_objs/carpet/baxis/_title.py index d97042543a..c398a35769 100644 --- a/packages/python/plotly/plotly/graph_objs/carpet/baxis/_title.py +++ b/packages/python/plotly/plotly/graph_objs/carpet/baxis/_title.py @@ -93,8 +93,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - offset=None, - text=None, + offset: int|float=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/carpet/baxis/title/_font.py b/packages/python/plotly/plotly/graph_objs/carpet/baxis/title/_font.py index 6cd34e9497..cd90713764 100644 --- a/packages/python/plotly/plotly/graph_objs/carpet/baxis/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/carpet/baxis/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/carpet/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/carpet/legendgrouptitle/_font.py index ba9ebf8854..4ae72b4bfc 100644 --- a/packages/python/plotly/plotly/graph_objs/carpet/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/carpet/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/_colorbar.py b/packages/python/plotly/plotly/graph_objs/choropleth/_colorbar.py index cd68e4dc36..e34b9a0d41 100644 --- a/packages/python/plotly/plotly/graph_objs/choropleth/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/choropleth/_colorbar.py @@ -1395,55 +1395,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/choropleth/_hoverlabel.py index 8ef467f06e..a4eea9680a 100644 --- a/packages/python/plotly/plotly/graph_objs/choropleth/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/choropleth/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/choropleth/_legendgrouptitle.py index b7e033e513..9e4bc61d6b 100644 --- a/packages/python/plotly/plotly/graph_objs/choropleth/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/choropleth/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/_marker.py b/packages/python/plotly/plotly/graph_objs/choropleth/_marker.py index 85feecc3da..9e0bf8a14c 100644 --- a/packages/python/plotly/plotly/graph_objs/choropleth/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/choropleth/_marker.py @@ -91,8 +91,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, line=None, - opacity=None, - opacitysrc=None, + opacity: int|float=None, + opacitysrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/_stream.py b/packages/python/plotly/plotly/graph_objs/choropleth/_stream.py index 6e5756bc9f..169052c0b8 100644 --- a/packages/python/plotly/plotly/graph_objs/choropleth/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/choropleth/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_tickfont.py index 742c0f504b..ec7d640c2d 100644 --- a/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_tickformatstop.py index f8263c06bb..164fb1343e 100644 --- a/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_title.py index 2574be4213..db4bca52cb 100644 --- a/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/title/_font.py index 9e2424622c..0c17b2f039 100644 --- a/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/choropleth/hoverlabel/_font.py index b376dcc592..5de2d8fb82 100644 --- a/packages/python/plotly/plotly/graph_objs/choropleth/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/choropleth/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/choropleth/legendgrouptitle/_font.py index 54307ad05f..a2d8ba284b 100644 --- a/packages/python/plotly/plotly/graph_objs/choropleth/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/choropleth/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/marker/_line.py b/packages/python/plotly/plotly/graph_objs/choropleth/marker/_line.py index 769e8a2ca7..df0461f13b 100644 --- a/packages/python/plotly/plotly/graph_objs/choropleth/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/choropleth/marker/_line.py @@ -124,10 +124,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str=None, + colorsrc: str=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/choropleth/selected/_marker.py index 4a65d7e9de..d504760cd0 100644 --- a/packages/python/plotly/plotly/graph_objs/choropleth/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/choropleth/selected/_marker.py @@ -42,7 +42,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/choropleth/unselected/_marker.py index 87da3d94d6..f2593ab59e 100644 --- a/packages/python/plotly/plotly/graph_objs/choropleth/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/choropleth/unselected/_marker.py @@ -44,7 +44,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/_colorbar.py b/packages/python/plotly/plotly/graph_objs/choroplethmap/_colorbar.py index 5748628306..e60cd41785 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmap/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmap/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/choroplethmap/_hoverlabel.py index 23ce9e8baa..1203702ebc 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmap/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmap/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/choroplethmap/_legendgrouptitle.py index 75a3a23dc3..e36f555df1 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmap/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmap/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/_marker.py b/packages/python/plotly/plotly/graph_objs/choroplethmap/_marker.py index 841aa582c8..97adddc171 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmap/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmap/_marker.py @@ -91,8 +91,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, line=None, - opacity=None, - opacitysrc=None, + opacity: int|float=None, + opacitysrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/_stream.py b/packages/python/plotly/plotly/graph_objs/choroplethmap/_stream.py index aaacb0b97a..980d701acc 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmap/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmap/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_tickfont.py index b8e1df9f39..35715dba28 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_tickformatstop.py index 5bb4ab5ce1..78febfe29b 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_title.py index 60ed17088b..83f7d6f7d1 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/title/_font.py index 839633abcd..7ca380839c 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/choroplethmap/hoverlabel/_font.py index 83d34a895e..eac04b3e34 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmap/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmap/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/choroplethmap/legendgrouptitle/_font.py index 635fe4b5af..a3231a58e7 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmap/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmap/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/marker/_line.py b/packages/python/plotly/plotly/graph_objs/choroplethmap/marker/_line.py index a7ad3f937c..2c066de2df 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmap/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmap/marker/_line.py @@ -124,10 +124,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str=None, + colorsrc: str=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/choroplethmap/selected/_marker.py index ed18022d7e..67b5946b1f 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmap/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmap/selected/_marker.py @@ -42,7 +42,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/choroplethmap/unselected/_marker.py index 099ec90f15..89fa392957 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmap/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmap/unselected/_marker.py @@ -44,7 +44,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_colorbar.py b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_colorbar.py index 5efab86794..db78549118 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_hoverlabel.py index 72632b93f1..76c3c90904 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_legendgrouptitle.py index 5764ce9e97..bc6b9c17f7 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_marker.py b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_marker.py index cfc0626095..934baa1a01 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_marker.py @@ -91,8 +91,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, line=None, - opacity=None, - opacitysrc=None, + opacity: int|float=None, + opacitysrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_stream.py b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_stream.py index 52d6c74b5c..2504d99c8a 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_tickfont.py index d50876e096..cf42da886a 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_tickformatstop.py index 95dbf18e1c..e960b5e315 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_title.py index 9d59a7ee41..882338565b 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/title/_font.py index a69b722c67..4326b9ed64 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/hoverlabel/_font.py index ac6aec3605..04e07eea24 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/legendgrouptitle/_font.py index 734d772cf9..6349011840 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/marker/_line.py b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/marker/_line.py index b0ee7236cd..e85d4af545 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/marker/_line.py @@ -124,10 +124,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str=None, + colorsrc: str=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/selected/_marker.py index a850c3b5f6..3cbfa89be3 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/selected/_marker.py @@ -42,7 +42,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/unselected/_marker.py index b751795d82..14f860fb16 100644 --- a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/choroplethmapbox/unselected/_marker.py @@ -44,7 +44,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/cone/_colorbar.py b/packages/python/plotly/plotly/graph_objs/cone/_colorbar.py index 3ae03d8b30..07a7a06929 100644 --- a/packages/python/plotly/plotly/graph_objs/cone/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/cone/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/cone/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/cone/_hoverlabel.py index ab647e8448..92b88ab654 100644 --- a/packages/python/plotly/plotly/graph_objs/cone/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/cone/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/cone/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/cone/_legendgrouptitle.py index e561a3c062..fd8b4b50f3 100644 --- a/packages/python/plotly/plotly/graph_objs/cone/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/cone/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/cone/_lighting.py b/packages/python/plotly/plotly/graph_objs/cone/_lighting.py index eb99efca74..e811216060 100644 --- a/packages/python/plotly/plotly/graph_objs/cone/_lighting.py +++ b/packages/python/plotly/plotly/graph_objs/cone/_lighting.py @@ -191,13 +191,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, + diffuse: int|float=None, + facenormalsepsilon: int|float=None, + fresnel: int|float=None, + roughness: int|float=None, + specular: int|float=None, + vertexnormalsepsilon: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/cone/_lightposition.py b/packages/python/plotly/plotly/graph_objs/cone/_lightposition.py index f12f0806c2..d0238dee41 100644 --- a/packages/python/plotly/plotly/graph_objs/cone/_lightposition.py +++ b/packages/python/plotly/plotly/graph_objs/cone/_lightposition.py @@ -89,9 +89,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float=None, + y: int|float=None, + z: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/cone/_stream.py b/packages/python/plotly/plotly/graph_objs/cone/_stream.py index 8ddf0c4d6a..93a365dc94 100644 --- a/packages/python/plotly/plotly/graph_objs/cone/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/cone/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/cone/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/cone/colorbar/_tickfont.py index 1373ee6ee4..779fe60442 100644 --- a/packages/python/plotly/plotly/graph_objs/cone/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/cone/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/cone/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/cone/colorbar/_tickformatstop.py index e61601a95f..3cceedf0c3 100644 --- a/packages/python/plotly/plotly/graph_objs/cone/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/cone/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/cone/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/cone/colorbar/_title.py index 256d1cc10c..c006722424 100644 --- a/packages/python/plotly/plotly/graph_objs/cone/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/cone/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/cone/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/cone/colorbar/title/_font.py index b8b18198a9..f21d078000 100644 --- a/packages/python/plotly/plotly/graph_objs/cone/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/cone/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/cone/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/cone/hoverlabel/_font.py index dfff5ce828..7e6544594d 100644 --- a/packages/python/plotly/plotly/graph_objs/cone/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/cone/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/cone/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/cone/legendgrouptitle/_font.py index 9715c113c4..8288000739 100644 --- a/packages/python/plotly/plotly/graph_objs/cone/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/cone/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contour/_colorbar.py b/packages/python/plotly/plotly/graph_objs/contour/_colorbar.py index 18213b2d73..1d855f667e 100644 --- a/packages/python/plotly/plotly/graph_objs/contour/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/contour/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contour/_contours.py b/packages/python/plotly/plotly/graph_objs/contour/_contours.py index ddd14823fe..6d2e8d1e72 100644 --- a/packages/python/plotly/plotly/graph_objs/contour/_contours.py +++ b/packages/python/plotly/plotly/graph_objs/contour/_contours.py @@ -331,17 +331,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - coloring=None, - end=None, + coloring: Any=None, + end: int|float=None, labelfont=None, - labelformat=None, - operation=None, - showlabels=None, - showlines=None, - size=None, - start=None, - type=None, - value=None, + labelformat: str=None, + operation: Any=None, + showlabels: bool=None, + showlines: bool=None, + size: int|float=None, + start: int|float=None, + type: Any=None, + value: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contour/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/contour/_hoverlabel.py index c652d5ee50..8e39c3db72 100644 --- a/packages/python/plotly/plotly/graph_objs/contour/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/contour/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contour/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/contour/_legendgrouptitle.py index 3e95a2b939..0cb89cd45a 100644 --- a/packages/python/plotly/plotly/graph_objs/contour/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/contour/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contour/_line.py b/packages/python/plotly/plotly/graph_objs/contour/_line.py index a15e6b2e03..92d00c6e05 100644 --- a/packages/python/plotly/plotly/graph_objs/contour/_line.py +++ b/packages/python/plotly/plotly/graph_objs/contour/_line.py @@ -129,10 +129,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - smoothing=None, - width=None, + color: str=None, + dash: str=None, + smoothing: int|float=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contour/_stream.py b/packages/python/plotly/plotly/graph_objs/contour/_stream.py index a73aa60d32..3aef64c3f2 100644 --- a/packages/python/plotly/plotly/graph_objs/contour/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/contour/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contour/_textfont.py b/packages/python/plotly/plotly/graph_objs/contour/_textfont.py index b775fd8081..51d9b1cab4 100644 --- a/packages/python/plotly/plotly/graph_objs/contour/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/contour/_textfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contour/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/contour/colorbar/_tickfont.py index 397464ab7d..2ac4823f8c 100644 --- a/packages/python/plotly/plotly/graph_objs/contour/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/contour/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contour/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/contour/colorbar/_tickformatstop.py index 1e7b8da75f..04e8143d07 100644 --- a/packages/python/plotly/plotly/graph_objs/contour/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/contour/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contour/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/contour/colorbar/_title.py index 2739dc6610..d557001ec4 100644 --- a/packages/python/plotly/plotly/graph_objs/contour/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/contour/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contour/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/contour/colorbar/title/_font.py index c23f902985..a88baf0a2f 100644 --- a/packages/python/plotly/plotly/graph_objs/contour/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/contour/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contour/contours/_labelfont.py b/packages/python/plotly/plotly/graph_objs/contour/contours/_labelfont.py index eb33ef8336..045c8c8ddb 100644 --- a/packages/python/plotly/plotly/graph_objs/contour/contours/_labelfont.py +++ b/packages/python/plotly/plotly/graph_objs/contour/contours/_labelfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contour/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/contour/hoverlabel/_font.py index 405acc2609..7584df1033 100644 --- a/packages/python/plotly/plotly/graph_objs/contour/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/contour/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contour/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/contour/legendgrouptitle/_font.py index f556643f50..5875575588 100644 --- a/packages/python/plotly/plotly/graph_objs/contour/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/contour/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/_colorbar.py b/packages/python/plotly/plotly/graph_objs/contourcarpet/_colorbar.py index 6411bc057d..2ece6cbd45 100644 --- a/packages/python/plotly/plotly/graph_objs/contourcarpet/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/contourcarpet/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/_contours.py b/packages/python/plotly/plotly/graph_objs/contourcarpet/_contours.py index 3fc1757ec7..4540a31cc1 100644 --- a/packages/python/plotly/plotly/graph_objs/contourcarpet/_contours.py +++ b/packages/python/plotly/plotly/graph_objs/contourcarpet/_contours.py @@ -329,17 +329,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - coloring=None, - end=None, + coloring: Any=None, + end: int|float=None, labelfont=None, - labelformat=None, - operation=None, - showlabels=None, - showlines=None, - size=None, - start=None, - type=None, - value=None, + labelformat: str=None, + operation: Any=None, + showlabels: bool=None, + showlines: bool=None, + size: int|float=None, + start: int|float=None, + type: Any=None, + value: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/contourcarpet/_legendgrouptitle.py index eeca18043c..ad8db7dbe1 100644 --- a/packages/python/plotly/plotly/graph_objs/contourcarpet/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/contourcarpet/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/_line.py b/packages/python/plotly/plotly/graph_objs/contourcarpet/_line.py index 905d0ef2a1..71b4b44622 100644 --- a/packages/python/plotly/plotly/graph_objs/contourcarpet/_line.py +++ b/packages/python/plotly/plotly/graph_objs/contourcarpet/_line.py @@ -129,10 +129,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - smoothing=None, - width=None, + color: str=None, + dash: str=None, + smoothing: int|float=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/_stream.py b/packages/python/plotly/plotly/graph_objs/contourcarpet/_stream.py index 4cd9e5e940..80b6a4c9cb 100644 --- a/packages/python/plotly/plotly/graph_objs/contourcarpet/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/contourcarpet/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_tickfont.py index 81e5570198..a5533720cc 100644 --- a/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_tickformatstop.py index 7a847d7d60..de87bad183 100644 --- a/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_title.py index 5a5342edd4..6de7f2c2a5 100644 --- a/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/title/_font.py index c9397f355c..0197737ab5 100644 --- a/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/contours/_labelfont.py b/packages/python/plotly/plotly/graph_objs/contourcarpet/contours/_labelfont.py index b48d5f9e80..ecbd247637 100644 --- a/packages/python/plotly/plotly/graph_objs/contourcarpet/contours/_labelfont.py +++ b/packages/python/plotly/plotly/graph_objs/contourcarpet/contours/_labelfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/contourcarpet/legendgrouptitle/_font.py index 02a3dd7c4a..210f5dc6ba 100644 --- a/packages/python/plotly/plotly/graph_objs/contourcarpet/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/contourcarpet/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/_colorbar.py b/packages/python/plotly/plotly/graph_objs/densitymap/_colorbar.py index 0b762b891a..3dced50d8d 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymap/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/densitymap/_colorbar.py @@ -1395,55 +1395,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/densitymap/_hoverlabel.py index 16e67aa7e0..a34c87cf56 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymap/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/densitymap/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/densitymap/_legendgrouptitle.py index 131192dcbe..b8f57a4c61 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymap/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/densitymap/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/_stream.py b/packages/python/plotly/plotly/graph_objs/densitymap/_stream.py index f8d9a95828..a85863d109 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymap/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/densitymap/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_tickfont.py index 3db18a1548..88e1a9a40f 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_tickformatstop.py index b2222d7c16..d36e550e63 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_title.py index 456313aa05..af856a95ae 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/title/_font.py index 75ef6b308e..f487616c0b 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/densitymap/hoverlabel/_font.py index 7c9fe0f01a..4a7263e3dc 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymap/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/densitymap/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/densitymap/legendgrouptitle/_font.py index 5ee5cdd294..f2bc8c14e0 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymap/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/densitymap/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/_colorbar.py b/packages/python/plotly/plotly/graph_objs/densitymapbox/_colorbar.py index cb07420d61..44c8e4be2d 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymapbox/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/densitymapbox/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/densitymapbox/_hoverlabel.py index b8c588211c..0da4768f10 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymapbox/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/densitymapbox/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/densitymapbox/_legendgrouptitle.py index ee97b71b57..ed79acc23d 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymapbox/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/densitymapbox/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/_stream.py b/packages/python/plotly/plotly/graph_objs/densitymapbox/_stream.py index 6dfcd0ed36..86e2d15fe6 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymapbox/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/densitymapbox/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_tickfont.py index d5e16637b5..8c7b9c9e8f 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_tickformatstop.py index 511d3b6873..da5bd4f69f 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_title.py index 7aa61eec26..d35f6b1995 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/title/_font.py index db94eeb312..ba8dc9af44 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/densitymapbox/hoverlabel/_font.py index cd4478ab71..30e852d12a 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymapbox/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/densitymapbox/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/densitymapbox/legendgrouptitle/_font.py index 181af8b675..1b66054dc1 100644 --- a/packages/python/plotly/plotly/graph_objs/densitymapbox/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/densitymapbox/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/_connector.py b/packages/python/plotly/plotly/graph_objs/funnel/_connector.py index 2b77e1a272..baad8e226f 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/_connector.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/_connector.py @@ -92,9 +92,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fillcolor=None, + fillcolor: str=None, line=None, - visible=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/funnel/_hoverlabel.py index 5aa43ea9ed..279b579903 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/_insidetextfont.py b/packages/python/plotly/plotly/graph_objs/funnel/_insidetextfont.py index 1e774dfc27..073baf5820 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/_insidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/_insidetextfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/funnel/_legendgrouptitle.py index 712d4171cb..131124d4c2 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/_marker.py b/packages/python/plotly/plotly/graph_objs/funnel/_marker.py index 776706bb03..ada9fdf715 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/_marker.py @@ -484,21 +484,21 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, + colorscale: str=None, + colorsrc: str=None, line=None, - opacity=None, - opacitysrc=None, - reversescale=None, - showscale=None, + opacity: int|float=None, + opacitysrc: str=None, + reversescale: bool=None, + showscale: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/_outsidetextfont.py b/packages/python/plotly/plotly/graph_objs/funnel/_outsidetextfont.py index e783f3aed2..56bb45e53b 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/_outsidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/_outsidetextfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/_stream.py b/packages/python/plotly/plotly/graph_objs/funnel/_stream.py index d81ccdcafd..52ccbd5f02 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/_textfont.py b/packages/python/plotly/plotly/graph_objs/funnel/_textfont.py index a26b6a6a08..3481de8089 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/_textfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/connector/_line.py b/packages/python/plotly/plotly/graph_objs/funnel/connector/_line.py index dad6d72668..daebb13c93 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/connector/_line.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/connector/_line.py @@ -99,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str=None, + dash: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/funnel/hoverlabel/_font.py index 472ec9c521..46f4c69fa1 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/funnel/legendgrouptitle/_font.py index 9ce21e1a0a..cd74b67941 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/funnel/marker/_colorbar.py index ccf7c5c910..c9a6431b03 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/marker/_line.py b/packages/python/plotly/plotly/graph_objs/funnel/marker/_line.py index f01abc6deb..d2d47d3c25 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/marker/_line.py @@ -417,18 +417,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, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, + colorscale: str=None, + colorsrc: str=None, + reversescale: bool=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_tickfont.py index 2983bd7ef0..de28dd4ef4 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_tickformatstop.py index 3dfa91b3c0..9fb5036aa6 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_title.py index 19b071bd11..d584a7809b 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/title/_font.py index edb1544943..6b0c12c689 100644 --- a/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/_domain.py b/packages/python/plotly/plotly/graph_objs/funnelarea/_domain.py index 25a6119bc9..b1bf333f38 100644 --- a/packages/python/plotly/plotly/graph_objs/funnelarea/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/funnelarea/_domain.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/funnelarea/_hoverlabel.py index 6e05d686a0..13598e0da4 100644 --- a/packages/python/plotly/plotly/graph_objs/funnelarea/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/funnelarea/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/_insidetextfont.py b/packages/python/plotly/plotly/graph_objs/funnelarea/_insidetextfont.py index 2b0a3a2bb5..f2018cdab4 100644 --- a/packages/python/plotly/plotly/graph_objs/funnelarea/_insidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/funnelarea/_insidetextfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/funnelarea/_legendgrouptitle.py index 232623b354..ba8f83b5df 100644 --- a/packages/python/plotly/plotly/graph_objs/funnelarea/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/funnelarea/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/_marker.py b/packages/python/plotly/plotly/graph_objs/funnelarea/_marker.py index e697f57b30..fd5671dbca 100644 --- a/packages/python/plotly/plotly/graph_objs/funnelarea/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/funnelarea/_marker.py @@ -117,8 +117,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - colors=None, - colorssrc=None, + colors: numpy.ndarray=None, + colorssrc: str=None, line=None, pattern=None, **kwargs diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/_stream.py b/packages/python/plotly/plotly/graph_objs/funnelarea/_stream.py index 004df1cbc3..d44a87d8ea 100644 --- a/packages/python/plotly/plotly/graph_objs/funnelarea/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/funnelarea/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/_textfont.py b/packages/python/plotly/plotly/graph_objs/funnelarea/_textfont.py index 5d791ec329..a0060e723c 100644 --- a/packages/python/plotly/plotly/graph_objs/funnelarea/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/funnelarea/_textfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/_title.py b/packages/python/plotly/plotly/graph_objs/funnelarea/_title.py index 874cd83fd4..6a0ba62b9b 100644 --- a/packages/python/plotly/plotly/graph_objs/funnelarea/_title.py +++ b/packages/python/plotly/plotly/graph_objs/funnelarea/_title.py @@ -94,8 +94,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - position=None, - text=None, + position: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/funnelarea/hoverlabel/_font.py index c21e62765d..6ecbf2d2ca 100644 --- a/packages/python/plotly/plotly/graph_objs/funnelarea/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/funnelarea/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/funnelarea/legendgrouptitle/_font.py index 8b5b8a1907..4c3260272b 100644 --- a/packages/python/plotly/plotly/graph_objs/funnelarea/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/funnelarea/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/marker/_line.py b/packages/python/plotly/plotly/graph_objs/funnelarea/marker/_line.py index 3035879f66..17d45d6f28 100644 --- a/packages/python/plotly/plotly/graph_objs/funnelarea/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/funnelarea/marker/_line.py @@ -119,10 +119,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str=None, + colorsrc: str=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/marker/_pattern.py b/packages/python/plotly/plotly/graph_objs/funnelarea/marker/_pattern.py index a5c9a0d4a9..35f4fcaeaa 100644 --- a/packages/python/plotly/plotly/graph_objs/funnelarea/marker/_pattern.py +++ b/packages/python/plotly/plotly/graph_objs/funnelarea/marker/_pattern.py @@ -334,18 +334,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, + bgcolorsrc: str=None, + fgcolor: str=None, + fgcolorsrc: str=None, + fgopacity: int|float=None, + fillmode: Any=None, + shape: Any=None, + shapesrc: str=None, + size: int|float=None, + sizesrc: str=None, + solidity: int|float=None, + soliditysrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/title/_font.py b/packages/python/plotly/plotly/graph_objs/funnelarea/title/_font.py index 6942a2d535..28d690507b 100644 --- a/packages/python/plotly/plotly/graph_objs/funnelarea/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/funnelarea/title/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/_colorbar.py b/packages/python/plotly/plotly/graph_objs/heatmap/_colorbar.py index ff4d297790..6a87edaab1 100644 --- a/packages/python/plotly/plotly/graph_objs/heatmap/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/heatmap/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/heatmap/_hoverlabel.py index 5e4bb089b4..403e098160 100644 --- a/packages/python/plotly/plotly/graph_objs/heatmap/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/heatmap/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/heatmap/_legendgrouptitle.py index e76d155105..10f5706902 100644 --- a/packages/python/plotly/plotly/graph_objs/heatmap/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/heatmap/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/_stream.py b/packages/python/plotly/plotly/graph_objs/heatmap/_stream.py index 6ebaf4a73f..9b66622463 100644 --- a/packages/python/plotly/plotly/graph_objs/heatmap/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/heatmap/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/_textfont.py b/packages/python/plotly/plotly/graph_objs/heatmap/_textfont.py index 446389478b..903a8e5ad9 100644 --- a/packages/python/plotly/plotly/graph_objs/heatmap/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/heatmap/_textfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_tickfont.py index 6425ab298e..db783d27f5 100644 --- a/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_tickformatstop.py index bf1fb33b8c..de8dd74317 100644 --- a/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_title.py index bd02c80d3f..8244f187dd 100644 --- a/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/title/_font.py index 72994a1a4e..75ed91e83a 100644 --- a/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/heatmap/hoverlabel/_font.py index 8a8ed1d0c6..4c5691da97 100644 --- a/packages/python/plotly/plotly/graph_objs/heatmap/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/heatmap/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/heatmap/legendgrouptitle/_font.py index 2301511fce..84b2c1e236 100644 --- a/packages/python/plotly/plotly/graph_objs/heatmap/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/heatmap/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_cumulative.py b/packages/python/plotly/plotly/graph_objs/histogram/_cumulative.py index 144d95974f..eef7cadd3f 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/_cumulative.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/_cumulative.py @@ -118,9 +118,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - currentbin=None, - direction=None, - enabled=None, + currentbin: Any=None, + direction: Any=None, + enabled: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_error_x.py b/packages/python/plotly/plotly/graph_objs/histogram/_error_x.py index 503cacf397..310c3d598c 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/_error_x.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/_error_x.py @@ -394,21 +394,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: numpy.ndarray=None, + arrayminus: numpy.ndarray=None, + arrayminussrc: str=None, + arraysrc: str=None, + color: str=None, + copy_ystyle: bool=None, + symmetric: bool=None, + thickness: int|float=None, + traceref: int=None, + tracerefminus: int=None, + type: Any=None, + value: int|float=None, + valueminus: int|float=None, + visible: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_error_y.py b/packages/python/plotly/plotly/graph_objs/histogram/_error_y.py index e82aa1249c..cfb4331fd5 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/_error_y.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/_error_y.py @@ -374,20 +374,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: numpy.ndarray=None, + arrayminus: numpy.ndarray=None, + arrayminussrc: str=None, + arraysrc: str=None, + color: str=None, + symmetric: bool=None, + thickness: int|float=None, + traceref: int=None, + tracerefminus: int=None, + type: Any=None, + value: int|float=None, + valueminus: int|float=None, + visible: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/histogram/_hoverlabel.py index 329afedc23..a7707fb2f0 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_insidetextfont.py b/packages/python/plotly/plotly/graph_objs/histogram/_insidetextfont.py index 9f958539ce..495c5662fd 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/_insidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/_insidetextfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/histogram/_legendgrouptitle.py index ed7fb875e6..83d7d3488f 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_marker.py b/packages/python/plotly/plotly/graph_objs/histogram/_marker.py index 5029590cbc..739116545a 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/_marker.py @@ -538,23 +538,23 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, - cornerradius=None, + colorscale: str=None, + colorsrc: str=None, + cornerradius: Any=None, line=None, - opacity=None, - opacitysrc=None, + opacity: int|float=None, + opacitysrc: str=None, pattern=None, - reversescale=None, - showscale=None, + reversescale: bool=None, + showscale: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_outsidetextfont.py b/packages/python/plotly/plotly/graph_objs/histogram/_outsidetextfont.py index c86f801d5e..a908502b4b 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/_outsidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/_outsidetextfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_stream.py b/packages/python/plotly/plotly/graph_objs/histogram/_stream.py index a2c6bfa0fb..392c9ec131 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_textfont.py b/packages/python/plotly/plotly/graph_objs/histogram/_textfont.py index 41245bd0f2..fe9fcbfda9 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/_textfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_xbins.py b/packages/python/plotly/plotly/graph_objs/histogram/_xbins.py index 2ba0745633..5d6da790b3 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/_xbins.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/_xbins.py @@ -142,9 +142,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - end=None, - size=None, - start=None, + end: Any=None, + size: Any=None, + start: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_ybins.py b/packages/python/plotly/plotly/graph_objs/histogram/_ybins.py index 0e07cf29ff..f1dd43adf7 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/_ybins.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/_ybins.py @@ -142,9 +142,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - end=None, - size=None, - start=None, + end: Any=None, + size: Any=None, + start: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/histogram/hoverlabel/_font.py index 22c249279c..ea6075ad29 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/histogram/legendgrouptitle/_font.py index 4a53169954..5e2c85ca64 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/histogram/marker/_colorbar.py index 0946649ded..e236290bd6 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/_line.py b/packages/python/plotly/plotly/graph_objs/histogram/marker/_line.py index a021733aca..ac0050f45e 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/marker/_line.py @@ -417,18 +417,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, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, + colorscale: str=None, + colorsrc: str=None, + reversescale: bool=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/_pattern.py b/packages/python/plotly/plotly/graph_objs/histogram/marker/_pattern.py index f71ab3e254..2f0d502fc1 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/marker/_pattern.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/marker/_pattern.py @@ -334,18 +334,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, + bgcolorsrc: str=None, + fgcolor: str=None, + fgcolorsrc: str=None, + fgopacity: int|float=None, + fillmode: Any=None, + shape: Any=None, + shapesrc: str=None, + size: int|float=None, + sizesrc: str=None, + solidity: int|float=None, + soliditysrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_tickfont.py index 42160891c5..f5283b2b7d 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_tickformatstop.py index 010ea522ac..5a8c390fa5 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_title.py index 0aee0220da..6b25bc3191 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/title/_font.py index a7903c3b02..cf37b932ae 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/histogram/selected/_marker.py index 7c65c6a666..dc97695390 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/selected/_marker.py @@ -68,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, + color: str=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/selected/_textfont.py b/packages/python/plotly/plotly/graph_objs/histogram/selected/_textfont.py index 57f720174a..99bc01fca5 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/selected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/selected/_textfont.py @@ -46,7 +46,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/histogram/unselected/_marker.py index 4d6df06791..cef273ac67 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/unselected/_marker.py @@ -72,8 +72,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, + color: str=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram/unselected/_textfont.py b/packages/python/plotly/plotly/graph_objs/histogram/unselected/_textfont.py index e99977b01c..b4038a0ad5 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram/unselected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/histogram/unselected/_textfont.py @@ -48,7 +48,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/_colorbar.py b/packages/python/plotly/plotly/graph_objs/histogram2d/_colorbar.py index cae05e5d76..b7be39a255 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2d/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2d/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/histogram2d/_hoverlabel.py index 651ec5d100..3d9886efea 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2d/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2d/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/histogram2d/_legendgrouptitle.py index 08c1584d90..f8bb89ec80 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2d/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2d/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/_marker.py b/packages/python/plotly/plotly/graph_objs/histogram2d/_marker.py index 793cb3a5b9..2cb3d76eae 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2d/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2d/_marker.py @@ -65,8 +65,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, + color: numpy.ndarray=None, + colorsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/_stream.py b/packages/python/plotly/plotly/graph_objs/histogram2d/_stream.py index 15df2de54a..40ed068486 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2d/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2d/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/_textfont.py b/packages/python/plotly/plotly/graph_objs/histogram2d/_textfont.py index 35ac4d1142..ffe02404ae 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2d/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2d/_textfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/_xbins.py b/packages/python/plotly/plotly/graph_objs/histogram2d/_xbins.py index 7dc96caa21..df4f7e2ca5 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2d/_xbins.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2d/_xbins.py @@ -127,9 +127,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - end=None, - size=None, - start=None, + end: Any=None, + size: Any=None, + start: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/_ybins.py b/packages/python/plotly/plotly/graph_objs/histogram2d/_ybins.py index 6cbb88c9e4..e281a05998 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2d/_ybins.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2d/_ybins.py @@ -127,9 +127,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - end=None, - size=None, - start=None, + end: Any=None, + size: Any=None, + start: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_tickfont.py index 47038d8290..aa68b763fe 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_tickformatstop.py index 0a7fc545e9..3e214077dd 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_title.py index eb2ea50efe..4f08fc76d6 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/title/_font.py index 15be36229d..6fccd74afc 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/histogram2d/hoverlabel/_font.py index 00b0ae3b93..d1964a3991 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2d/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2d/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/histogram2d/legendgrouptitle/_font.py index c7b1f86a47..7385d540b3 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2d/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2d/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_colorbar.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_colorbar.py index a93633c8c8..c24f70d6e2 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_contours.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_contours.py index d3b90107ff..09f3210e8e 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_contours.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_contours.py @@ -331,17 +331,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - coloring=None, - end=None, + coloring: Any=None, + end: int|float=None, labelfont=None, - labelformat=None, - operation=None, - showlabels=None, - showlines=None, - size=None, - start=None, - type=None, - value=None, + labelformat: str=None, + operation: Any=None, + showlabels: bool=None, + showlines: bool=None, + size: int|float=None, + start: int|float=None, + type: Any=None, + value: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_hoverlabel.py index 684cff01ab..4747e899eb 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_legendgrouptitle.py index d0212fba5a..0c67f12854 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_line.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_line.py index c7eb3ad3a0..2a608aef38 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_line.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_line.py @@ -125,10 +125,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - smoothing=None, - width=None, + color: str=None, + dash: str=None, + smoothing: int|float=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_marker.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_marker.py index 5578d31cbd..ff60e6b4e5 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_marker.py @@ -65,8 +65,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, + color: numpy.ndarray=None, + colorsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_stream.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_stream.py index 17b1ba0b18..786b227982 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_textfont.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_textfont.py index 6adac74c63..1e553bd170 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_textfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_xbins.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_xbins.py index 8ccfc114df..2b19ef04da 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_xbins.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_xbins.py @@ -127,9 +127,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - end=None, - size=None, - start=None, + end: Any=None, + size: Any=None, + start: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_ybins.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_ybins.py index e4a93660ce..5e98600adb 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_ybins.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_ybins.py @@ -127,9 +127,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - end=None, - size=None, - start=None, + end: Any=None, + size: Any=None, + start: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_tickfont.py index cbb945df4b..023d71c613 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_tickformatstop.py index dd87fdc747..7043d7bcb0 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_title.py index 401e0f6198..eb9bce1231 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/title/_font.py index 9ffb0f4028..9dcb3a0c02 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/contours/_labelfont.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/contours/_labelfont.py index 78ebc5850d..8df6d51246 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/contours/_labelfont.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/contours/_labelfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/hoverlabel/_font.py index aaab0076e9..9aa6a58f84 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/legendgrouptitle/_font.py index 17f84a494a..561d28ada1 100644 --- a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/histogram2dcontour/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_domain.py b/packages/python/plotly/plotly/graph_objs/icicle/_domain.py index 462e95be79..151b3bd516 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/_domain.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/icicle/_hoverlabel.py index 4a72bf5616..9b321faaa1 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_insidetextfont.py b/packages/python/plotly/plotly/graph_objs/icicle/_insidetextfont.py index 1a348e35c5..ca6a6bac6f 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/_insidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/_insidetextfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_leaf.py b/packages/python/plotly/plotly/graph_objs/icicle/_leaf.py index daacc653c5..e48bcff5e1 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/_leaf.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/_leaf.py @@ -44,7 +44,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/icicle/_legendgrouptitle.py index 13bfe7aa37..1a10a0ce07 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_marker.py b/packages/python/plotly/plotly/graph_objs/icicle/_marker.py index 5dacb945b7..6157bd0c1c 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/_marker.py @@ -448,20 +448,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colors=None, - colorscale=None, - colorssrc=None, + colors: numpy.ndarray=None, + colorscale: str=None, + colorssrc: str=None, line=None, pattern=None, - reversescale=None, - showscale=None, + reversescale: bool=None, + showscale: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_outsidetextfont.py b/packages/python/plotly/plotly/graph_objs/icicle/_outsidetextfont.py index e4dfaaf6db..bb06b443a5 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/_outsidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/_outsidetextfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_pathbar.py b/packages/python/plotly/plotly/graph_objs/icicle/_pathbar.py index 6f1732c4ce..ec265c8727 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/_pathbar.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/_pathbar.py @@ -145,11 +145,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - edgeshape=None, - side=None, + edgeshape: Any=None, + side: Any=None, textfont=None, - thickness=None, - visible=None, + thickness: int|float=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_root.py b/packages/python/plotly/plotly/graph_objs/icicle/_root.py index 1e65416580..8912e2fe28 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/_root.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/_root.py @@ -50,7 +50,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_stream.py b/packages/python/plotly/plotly/graph_objs/icicle/_stream.py index 485073385e..90811a9c8c 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_textfont.py b/packages/python/plotly/plotly/graph_objs/icicle/_textfont.py index cd35b08fa5..1708d2beb2 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/_textfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_tiling.py b/packages/python/plotly/plotly/graph_objs/icicle/_tiling.py index ea0be35fc2..7797c52c17 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/_tiling.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/_tiling.py @@ -107,9 +107,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - flip=None, - orientation=None, - pad=None, + flip: Any=None, + orientation: Any=None, + pad: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/icicle/hoverlabel/_font.py index 3fd6994fcb..2d6f21b502 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/icicle/legendgrouptitle/_font.py index 3d9352a9a9..e801d9376b 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/icicle/marker/_colorbar.py index 2e859fd82a..ac42cbeb90 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/_line.py b/packages/python/plotly/plotly/graph_objs/icicle/marker/_line.py index 47bb4e2556..3301ea4b5f 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/marker/_line.py @@ -119,10 +119,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str=None, + colorsrc: str=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/_pattern.py b/packages/python/plotly/plotly/graph_objs/icicle/marker/_pattern.py index 6e6f8d4d8c..f4856c59a0 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/marker/_pattern.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/marker/_pattern.py @@ -334,18 +334,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, + bgcolorsrc: str=None, + fgcolor: str=None, + fgcolorsrc: str=None, + fgopacity: int|float=None, + fillmode: Any=None, + shape: Any=None, + shapesrc: str=None, + size: int|float=None, + sizesrc: str=None, + solidity: int|float=None, + soliditysrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_tickfont.py index c84259b968..d4b3463807 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_tickformatstop.py index 6de10e671d..3741920310 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_title.py index 6a9f510041..25c759c32e 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/title/_font.py index 5887c1ac1f..f96e3ab062 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/icicle/pathbar/_textfont.py b/packages/python/plotly/plotly/graph_objs/icicle/pathbar/_textfont.py index c928ec353f..fb2471f3c3 100644 --- a/packages/python/plotly/plotly/graph_objs/icicle/pathbar/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/icicle/pathbar/_textfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/image/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/image/_hoverlabel.py index f1c9eca6af..9dd34acea4 100644 --- a/packages/python/plotly/plotly/graph_objs/image/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/image/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/image/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/image/_legendgrouptitle.py index 3db927818c..0ceb3d7868 100644 --- a/packages/python/plotly/plotly/graph_objs/image/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/image/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/image/_stream.py b/packages/python/plotly/plotly/graph_objs/image/_stream.py index e54192b830..01ee763861 100644 --- a/packages/python/plotly/plotly/graph_objs/image/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/image/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/image/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/image/hoverlabel/_font.py index d3ba0cc4b6..c2399dda5e 100644 --- a/packages/python/plotly/plotly/graph_objs/image/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/image/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/image/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/image/legendgrouptitle/_font.py index 3fad7dbce5..7db2d0bf2d 100644 --- a/packages/python/plotly/plotly/graph_objs/image/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/image/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/_delta.py b/packages/python/plotly/plotly/graph_objs/indicator/_delta.py index 1d9adf557a..d25b70bcf5 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/_delta.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/_delta.py @@ -240,12 +240,12 @@ def __init__(self, decreasing=None, font=None, increasing=None, - position=None, - prefix=None, - reference=None, - relative=None, - suffix=None, - valueformat=None, + position: Any=None, + prefix: str=None, + reference: int|float=None, + relative: bool=None, + suffix: str=None, + valueformat: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/_domain.py b/packages/python/plotly/plotly/graph_objs/indicator/_domain.py index d724507295..9c3d2bd969 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/_domain.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/_gauge.py b/packages/python/plotly/plotly/graph_objs/indicator/_gauge.py index ab830eb6f5..a79e2cf828 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/_gauge.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/_gauge.py @@ -249,10 +249,10 @@ def __init__(self, arg=None, axis=None, bar=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - shape=None, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + shape: Any=None, steps=None, stepdefaults=None, threshold=None, diff --git a/packages/python/plotly/plotly/graph_objs/indicator/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/indicator/_legendgrouptitle.py index 18c54bf264..098d48ff41 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/_number.py b/packages/python/plotly/plotly/graph_objs/indicator/_number.py index 71729fb0cc..0b350dc750 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/_number.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/_number.py @@ -121,9 +121,9 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - prefix=None, - suffix=None, - valueformat=None, + prefix: str=None, + suffix: str=None, + valueformat: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/_stream.py b/packages/python/plotly/plotly/graph_objs/indicator/_stream.py index 1face0874b..f2e3d4eb30 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/_title.py b/packages/python/plotly/plotly/graph_objs/indicator/_title.py index 9f798c0e8c..579f0deb04 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/_title.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/_title.py @@ -95,9 +95,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, + align: Any=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/delta/_decreasing.py b/packages/python/plotly/plotly/graph_objs/indicator/delta/_decreasing.py index b7976631d3..1ba94b729a 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/delta/_decreasing.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/delta/_decreasing.py @@ -69,8 +69,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - symbol=None, + color: str=None, + symbol: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/delta/_font.py b/packages/python/plotly/plotly/graph_objs/indicator/delta/_font.py index ab3b074985..ceeec04c24 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/delta/_font.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/delta/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/delta/_increasing.py b/packages/python/plotly/plotly/graph_objs/indicator/delta/_increasing.py index fbcba43f9a..c9a899ea91 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/delta/_increasing.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/delta/_increasing.py @@ -69,8 +69,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - symbol=None, + color: str=None, + symbol: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/_axis.py b/packages/python/plotly/plotly/graph_objs/indicator/gauge/_axis.py index 8edbbf97bb..a87cef12ac 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/gauge/_axis.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/gauge/_axis.py @@ -883,36 +883,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, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + minexponent: int|float=None, + nticks: int=None, + range: list=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/_bar.py b/packages/python/plotly/plotly/graph_objs/indicator/gauge/_bar.py index 32f3eeed52..4b425e6641 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/gauge/_bar.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/gauge/_bar.py @@ -94,9 +94,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, line=None, - thickness=None, + thickness: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/_step.py b/packages/python/plotly/plotly/graph_objs/indicator/gauge/_step.py index d5ef716df5..06e871ab19 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/gauge/_step.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/gauge/_step.py @@ -195,12 +195,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, line=None, - name=None, - range=None, - templateitemname=None, - thickness=None, + name: str=None, + range: list=None, + templateitemname: str=None, + thickness: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/_threshold.py b/packages/python/plotly/plotly/graph_objs/indicator/gauge/_threshold.py index ad5e1d4d73..c5e282b794 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/gauge/_threshold.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/gauge/_threshold.py @@ -91,8 +91,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, line=None, - thickness=None, - value=None, + thickness: int|float=None, + value: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/axis/_tickfont.py b/packages/python/plotly/plotly/graph_objs/indicator/gauge/axis/_tickfont.py index 1ab085c4a3..4aa4e917f5 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/gauge/axis/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/gauge/axis/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/axis/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/indicator/gauge/axis/_tickformatstop.py index faf3554928..865c32b942 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/gauge/axis/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/gauge/axis/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/bar/_line.py b/packages/python/plotly/plotly/graph_objs/indicator/gauge/bar/_line.py index c418ad10b2..4cd829ef79 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/gauge/bar/_line.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/gauge/bar/_line.py @@ -69,8 +69,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/step/_line.py b/packages/python/plotly/plotly/graph_objs/indicator/gauge/step/_line.py index 48ed82b9ea..5ac7eaad55 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/gauge/step/_line.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/gauge/step/_line.py @@ -69,8 +69,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/threshold/_line.py b/packages/python/plotly/plotly/graph_objs/indicator/gauge/threshold/_line.py index 84e7743635..d82a45fe38 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/gauge/threshold/_line.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/gauge/threshold/_line.py @@ -68,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/indicator/legendgrouptitle/_font.py index 2b1701c930..babd45f717 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/number/_font.py b/packages/python/plotly/plotly/graph_objs/indicator/number/_font.py index 0ba4e7eb22..7a10737b36 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/number/_font.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/number/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/indicator/title/_font.py b/packages/python/plotly/plotly/graph_objs/indicator/title/_font.py index e3d29a5278..1c774b6425 100644 --- a/packages/python/plotly/plotly/graph_objs/indicator/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/indicator/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_colorbar.py b/packages/python/plotly/plotly/graph_objs/isosurface/_colorbar.py index 133e3c5192..06c08797be 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/_colorbar.py @@ -1395,55 +1395,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_contour.py b/packages/python/plotly/plotly/graph_objs/isosurface/_contour.py index 4cc719415e..cfac1c354d 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/_contour.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/_contour.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - show=None, - width=None, + color: str=None, + show: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/isosurface/_hoverlabel.py index 9fbce2163a..e218dcefe1 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/isosurface/_legendgrouptitle.py index 47d85ae0d5..d386e6d037 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_lighting.py b/packages/python/plotly/plotly/graph_objs/isosurface/_lighting.py index ff32593cc8..d79efdf34e 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/_lighting.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/_lighting.py @@ -191,13 +191,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, + diffuse: int|float=None, + facenormalsepsilon: int|float=None, + fresnel: int|float=None, + roughness: int|float=None, + specular: int|float=None, + vertexnormalsepsilon: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_lightposition.py b/packages/python/plotly/plotly/graph_objs/isosurface/_lightposition.py index 72aff28ab6..010cc9ef38 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/_lightposition.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/_lightposition.py @@ -89,9 +89,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float=None, + y: int|float=None, + z: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_spaceframe.py b/packages/python/plotly/plotly/graph_objs/isosurface/_spaceframe.py index fe5a3dfa4c..26265e2bfb 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/_spaceframe.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/_spaceframe.py @@ -78,8 +78,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - show=None, + fill: int|float=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_stream.py b/packages/python/plotly/plotly/graph_objs/isosurface/_stream.py index ac193aa076..04b8ab7f54 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_surface.py b/packages/python/plotly/plotly/graph_objs/isosurface/_surface.py index 54d6df5f34..56fcfa9cbb 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/_surface.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/_surface.py @@ -138,10 +138,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - count=None, - fill=None, - pattern=None, - show=None, + count: int=None, + fill: int|float=None, + pattern: Any=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/caps/_x.py b/packages/python/plotly/plotly/graph_objs/isosurface/caps/_x.py index 8e8810eea1..e784f3a7fc 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/caps/_x.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/caps/_x.py @@ -78,8 +78,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - show=None, + fill: int|float=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/caps/_y.py b/packages/python/plotly/plotly/graph_objs/isosurface/caps/_y.py index 3e6437ba36..1425d79ea8 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/caps/_y.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/caps/_y.py @@ -78,8 +78,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - show=None, + fill: int|float=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/caps/_z.py b/packages/python/plotly/plotly/graph_objs/isosurface/caps/_z.py index 05f5cbd703..27eaeb5117 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/caps/_z.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/caps/_z.py @@ -78,8 +78,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - show=None, + fill: int|float=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_tickfont.py index 4b4e086d34..efd3c182ae 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_tickformatstop.py index 5dfc4ea7f7..c40f69cda5 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_title.py index 2a67be0a15..a11ce06a32 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/title/_font.py index ff1c82e7a3..1be18da87d 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/isosurface/hoverlabel/_font.py index 3698abbf89..be60cfdea6 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/isosurface/legendgrouptitle/_font.py index c97442df99..b153e24364 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/slices/_x.py b/packages/python/plotly/plotly/graph_objs/isosurface/slices/_x.py index c7e0fe747a..2267cdcfdb 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/slices/_x.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/slices/_x.py @@ -123,10 +123,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - locations=None, - locationssrc=None, - show=None, + fill: int|float=None, + locations: numpy.ndarray=None, + locationssrc: str=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/slices/_y.py b/packages/python/plotly/plotly/graph_objs/isosurface/slices/_y.py index c3a7342921..c83b8f6f6e 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/slices/_y.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/slices/_y.py @@ -123,10 +123,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - locations=None, - locationssrc=None, - show=None, + fill: int|float=None, + locations: numpy.ndarray=None, + locationssrc: str=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/slices/_z.py b/packages/python/plotly/plotly/graph_objs/isosurface/slices/_z.py index e938be8599..c82cb5f922 100644 --- a/packages/python/plotly/plotly/graph_objs/isosurface/slices/_z.py +++ b/packages/python/plotly/plotly/graph_objs/isosurface/slices/_z.py @@ -123,10 +123,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - locations=None, - locationssrc=None, - show=None, + fill: int|float=None, + locations: numpy.ndarray=None, + locationssrc: str=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_activeselection.py b/packages/python/plotly/plotly/graph_objs/layout/_activeselection.py index 6e4ad180a9..11f51ea675 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_activeselection.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_activeselection.py @@ -68,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fillcolor=None, - opacity=None, + fillcolor: str=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_activeshape.py b/packages/python/plotly/plotly/graph_objs/layout/_activeshape.py index 422a467818..1e2bc06c11 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_activeshape.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_activeshape.py @@ -68,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fillcolor=None, - opacity=None, + fillcolor: str=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_annotation.py b/packages/python/plotly/plotly/graph_objs/layout/_annotation.py index b0e704bf85..29bdcfaa03 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_annotation.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_annotation.py @@ -1354,49 +1354,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, + align: Any=None, + arrowcolor: str=None, + arrowhead: int=None, + arrowside: Any=None, + arrowsize: int|float=None, + arrowwidth: int|float=None, + ax: Any=None, + axref: Any=None, + ay: Any=None, + ayref: Any=None, + bgcolor: str=None, + bordercolor: str=None, + borderpad: int|float=None, + borderwidth: int|float=None, + captureevents: bool=None, + clicktoshow: Any=None, font=None, - height=None, + height: int|float=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, + hovertext: str=None, + name: str=None, + opacity: int|float=None, + showarrow: bool=None, + standoff: int|float=None, + startarrowhead: int=None, + startarrowsize: int|float=None, + startstandoff: int|float=None, + templateitemname: str=None, + text: str=None, + textangle: int|float=None, + valign: Any=None, + visible: bool=None, + width: int|float=None, + x: Any=None, + xanchor: Any=None, + xclick: Any=None, + xref: Any=None, + xshift: int|float=None, + y: Any=None, + yanchor: Any=None, + yclick: Any=None, + yref: Any=None, + yshift: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_coloraxis.py b/packages/python/plotly/plotly/graph_objs/layout/_coloraxis.py index 1ae6bddbdd..e3fb85f26c 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_coloraxis.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_coloraxis.py @@ -300,15 +300,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, colorbar=None, - colorscale=None, - reversescale=None, - showscale=None, + colorscale: str=None, + reversescale: bool=None, + showscale: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_colorscale.py b/packages/python/plotly/plotly/graph_objs/layout/_colorscale.py index 896c8e6ec6..e1548d5ebc 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_colorscale.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_colorscale.py @@ -169,9 +169,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - diverging=None, - sequential=None, - sequentialminus=None, + diverging: str=None, + sequential: str=None, + sequentialminus: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_font.py b/packages/python/plotly/plotly/graph_objs/layout/_font.py index fd3106772c..758fd79336 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_geo.py b/packages/python/plotly/plotly/graph_objs/layout/_geo.py index cffcee8524..2ba3beb694 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_geo.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_geo.py @@ -809,38 +809,38 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, + bgcolor: str=None, center=None, - coastlinecolor=None, - coastlinewidth=None, - countrycolor=None, - countrywidth=None, + coastlinecolor: str=None, + coastlinewidth: int|float=None, + countrycolor: str=None, + countrywidth: int|float=None, domain=None, - fitbounds=None, - framecolor=None, - framewidth=None, - lakecolor=None, - landcolor=None, + fitbounds: Any=None, + framecolor: str=None, + framewidth: int|float=None, + lakecolor: str=None, + landcolor: str=None, lataxis=None, lonaxis=None, - oceancolor=None, + oceancolor: str=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, + resolution: Any=None, + rivercolor: str=None, + riverwidth: int|float=None, + scope: Any=None, + showcoastlines: bool=None, + showcountries: bool=None, + showframe: bool=None, + showlakes: bool=None, + showland: bool=None, + showocean: bool=None, + showrivers: bool=None, + showsubunits: bool=None, + subunitcolor: str=None, + subunitwidth: int|float=None, + uirevision: Any=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_grid.py b/packages/python/plotly/plotly/graph_objs/layout/_grid.py index ced67a8c89..e73a14c96a 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_grid.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_grid.py @@ -391,18 +391,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - columns=None, + columns: int=None, domain=None, - pattern=None, - roworder=None, - rows=None, - subplots=None, - xaxes=None, - xgap=None, - xside=None, - yaxes=None, - ygap=None, - yside=None, + pattern: Any=None, + roworder: Any=None, + rows: int=None, + subplots: list=None, + xaxes: list=None, + xgap: int|float=None, + xside: Any=None, + yaxes: list=None, + ygap: int|float=None, + yside: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/layout/_hoverlabel.py index a1a3279f59..b6dde94401 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_hoverlabel.py @@ -187,12 +187,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - bgcolor=None, - bordercolor=None, + align: Any=None, + bgcolor: str=None, + bordercolor: str=None, font=None, grouptitlefont=None, - namelength=None, + namelength: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_image.py b/packages/python/plotly/plotly/graph_objs/layout/_image.py index 639adf3295..436caa28d1 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_image.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_image.py @@ -470,21 +470,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, + name: str=None, + opacity: int|float=None, + sizex: int|float=None, + sizey: int|float=None, + sizing: Any=None, + source: str=None, + templateitemname: str=None, + visible: bool=None, + x: Any=None, + xanchor: Any=None, + xref: Any=None, + y: Any=None, + yanchor: Any=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_legend.py b/packages/python/plotly/plotly/graph_objs/layout/_legend.py index 519a14f2b6..6aa91bcdb7 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_legend.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_legend.py @@ -737,32 +737,32 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - entrywidth=None, - entrywidthmode=None, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + entrywidth: int|float=None, + entrywidthmode: Any=None, font=None, - groupclick=None, + groupclick: Any=None, grouptitlefont=None, - indentation=None, - itemclick=None, - itemdoubleclick=None, - itemsizing=None, - itemwidth=None, - orientation=None, + indentation: int|float=None, + itemclick: Any=None, + itemdoubleclick: Any=None, + itemsizing: Any=None, + itemwidth: int|float=None, + orientation: Any=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, + tracegroupgap: int|float=None, + traceorder: Any=None, + uirevision: Any=None, + valign: Any=None, + visible: bool=None, + x: int|float=None, + xanchor: Any=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_map.py b/packages/python/plotly/plotly/graph_objs/layout/_map.py index faf3342736..e1320c5a75 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_map.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_map.py @@ -295,16 +295,16 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bearing=None, + bearing: int|float=None, bounds=None, center=None, domain=None, layers=None, layerdefaults=None, - pitch=None, - style=None, - uirevision=None, - zoom=None, + pitch: int|float=None, + style: Any=None, + uirevision: Any=None, + zoom: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_mapbox.py b/packages/python/plotly/plotly/graph_objs/layout/_mapbox.py index fea8bffecb..0e3eec6c36 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_mapbox.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_mapbox.py @@ -339,17 +339,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - accesstoken=None, - bearing=None, + accesstoken: str=None, + bearing: int|float=None, bounds=None, center=None, domain=None, layers=None, layerdefaults=None, - pitch=None, - style=None, - uirevision=None, - zoom=None, + pitch: int|float=None, + style: Any=None, + uirevision: Any=None, + zoom: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_margin.py b/packages/python/plotly/plotly/graph_objs/layout/_margin.py index 5e76b959eb..87f8e570c8 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_margin.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_margin.py @@ -159,12 +159,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, + b: int|float=None, + l: int|float=None, + pad: int|float=None, + r: int|float=None, + t: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_modebar.py b/packages/python/plotly/plotly/graph_objs/layout/_modebar.py index 8e9c1a349c..c531f23033 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_modebar.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_modebar.py @@ -290,15 +290,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, + add: str=None, + addsrc: str=None, + bgcolor: str=None, + color: str=None, + orientation: Any=None, + remove: str=None, + removesrc: str=None, + uirevision: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_newselection.py b/packages/python/plotly/plotly/graph_objs/layout/_newselection.py index 0a7a9c1edb..b584ee79c8 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_newselection.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_newselection.py @@ -77,7 +77,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, line=None, - mode=None, + mode: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_newshape.py b/packages/python/plotly/plotly/graph_objs/layout/_newshape.py index b88129ab6f..d70ec8e665 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_newshape.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_newshape.py @@ -424,21 +424,21 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - drawdirection=None, - fillcolor=None, - fillrule=None, + drawdirection: Any=None, + fillcolor: str=None, + fillrule: Any=None, label=None, - layer=None, - legend=None, - legendgroup=None, + layer: Any=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=None, line=None, - name=None, - opacity=None, - showlegend=None, - visible=None, + name: str=None, + opacity: int|float=None, + showlegend: bool=None, + visible: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_polar.py b/packages/python/plotly/plotly/graph_objs/layout/_polar.py index cff60733ce..f772c76577 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_polar.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_polar.py @@ -293,15 +293,15 @@ def _prop_descriptions(self): def __init__(self, arg=None, angularaxis=None, - bargap=None, - barmode=None, - bgcolor=None, + bargap: int|float=None, + barmode: Any=None, + bgcolor: str=None, domain=None, - gridshape=None, - hole=None, + gridshape: Any=None, + hole: int|float=None, radialaxis=None, - sector=None, - uirevision=None, + sector: list=None, + uirevision: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_scene.py b/packages/python/plotly/plotly/graph_objs/layout/_scene.py index 6feab8541a..e1527c9e8b 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_scene.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_scene.py @@ -357,14 +357,14 @@ def __init__(self, arg=None, annotations=None, annotationdefaults=None, - aspectmode=None, + aspectmode: Any=None, aspectratio=None, - bgcolor=None, + bgcolor: str=None, camera=None, domain=None, - dragmode=None, - hovermode=None, - uirevision=None, + dragmode: Any=None, + hovermode: Any=None, + uirevision: Any=None, xaxis=None, yaxis=None, zaxis=None, diff --git a/packages/python/plotly/plotly/graph_objs/layout/_selection.py b/packages/python/plotly/plotly/graph_objs/layout/_selection.py index 0ecbb61910..0a6615f844 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_selection.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_selection.py @@ -374,17 +374,17 @@ 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, + name: str=None, + opacity: int|float=None, + path: str=None, + templateitemname: str=None, + type: Any=None, + x0: Any=None, + x1: Any=None, + xref: Any=None, + y0: Any=None, + y1: Any=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_shape.py b/packages/python/plotly/plotly/graph_objs/layout/_shape.py index 8383b94e31..958ee05b0a 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_shape.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_shape.py @@ -1008,38 +1008,38 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - editable=None, - fillcolor=None, - fillrule=None, + editable: bool=None, + fillcolor: str=None, + fillrule: Any=None, label=None, - layer=None, - legend=None, - legendgroup=None, + layer: Any=None, + legend: str=None, + legendgroup: str=None, legendgrouptitle=None, - legendrank=None, - legendwidth=None, + legendrank: int|float=None, + legendwidth: int|float=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, + name: str=None, + opacity: int|float=None, + path: str=None, + showlegend: bool=None, + templateitemname: str=None, + type: Any=None, + visible: Any=None, + x0: Any=None, + x0shift: int|float=None, + x1: Any=None, + x1shift: int|float=None, + xanchor: Any=None, + xref: Any=None, + xsizemode: Any=None, + y0: Any=None, + y0shift: int|float=None, + y1: Any=None, + y1shift: int|float=None, + yanchor: Any=None, + yref: Any=None, + ysizemode: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_slider.py b/packages/python/plotly/plotly/graph_objs/layout/_slider.py index df5a838620..5e2b355558 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_slider.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_slider.py @@ -640,30 +640,30 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - active=None, - activebgcolor=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, + active: int|float=None, + activebgcolor: str=None, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, currentvalue=None, font=None, - len=None, - lenmode=None, - minorticklen=None, - name=None, + len: int|float=None, + lenmode: Any=None, + minorticklen: int|float=None, + name: str=None, pad=None, steps=None, stepdefaults=None, - templateitemname=None, - tickcolor=None, - ticklen=None, - tickwidth=None, + templateitemname: str=None, + tickcolor: str=None, + ticklen: int|float=None, + tickwidth: int|float=None, transition=None, - visible=None, - x=None, - xanchor=None, - y=None, - yanchor=None, + visible: bool=None, + x: int|float=None, + xanchor: Any=None, + y: int|float=None, + yanchor: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_smith.py b/packages/python/plotly/plotly/graph_objs/layout/_smith.py index 3582a4fb95..15dba5359a 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_smith.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_smith.py @@ -118,7 +118,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, + bgcolor: str=None, domain=None, imaginaryaxis=None, realaxis=None, diff --git a/packages/python/plotly/plotly/graph_objs/layout/_ternary.py b/packages/python/plotly/plotly/graph_objs/layout/_ternary.py index 75f6b9895d..c969308fbf 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_ternary.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_ternary.py @@ -193,11 +193,11 @@ def __init__(self, arg=None, aaxis=None, baxis=None, - bgcolor=None, + bgcolor: str=None, caxis=None, domain=None, - sum=None, - uirevision=None, + sum: int|float=None, + uirevision: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_title.py b/packages/python/plotly/plotly/graph_objs/layout/_title.py index 2da826ca7d..68556abb0c 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_title.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_title.py @@ -343,17 +343,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - automargin=None, + automargin: bool=None, font=None, pad=None, subtitle=None, - text=None, - x=None, - xanchor=None, - xref=None, - y=None, - yanchor=None, - yref=None, + text: str=None, + x: int|float=None, + xanchor: Any=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_transition.py b/packages/python/plotly/plotly/graph_objs/layout/_transition.py index 1af48862bd..9950d9b58d 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_transition.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_transition.py @@ -102,9 +102,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - duration=None, - easing=None, - ordering=None, + duration: int|float=None, + easing: Any=None, + ordering: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_uniformtext.py b/packages/python/plotly/plotly/graph_objs/layout/_uniformtext.py index 41d9672549..e352b3760c 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_uniformtext.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_uniformtext.py @@ -80,8 +80,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - minsize=None, - mode=None, + minsize: int|float=None, + mode: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_updatemenu.py b/packages/python/plotly/plotly/graph_objs/layout/_updatemenu.py index adc1d37dde..8f44c84a3b 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_updatemenu.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_updatemenu.py @@ -504,24 +504,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - active=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, + active: int=None, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, buttons=None, buttondefaults=None, - direction=None, + direction: Any=None, font=None, - name=None, + name: str=None, pad=None, - showactive=None, - templateitemname=None, - type=None, - visible=None, - x=None, - xanchor=None, - y=None, - yanchor=None, + showactive: bool=None, + templateitemname: str=None, + type: Any=None, + visible: bool=None, + x: int|float=None, + xanchor: Any=None, + y: int|float=None, + yanchor: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_xaxis.py b/packages/python/plotly/plotly/graph_objs/layout/_xaxis.py index 6e14ca0ba0..c46d0fa298 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_xaxis.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_xaxis.py @@ -2778,99 +2778,99 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - anchor=None, - automargin=None, - autorange=None, + anchor: Any=None, + automargin: Any=None, + autorange: Any=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, + autotickangles: list=None, + autotypenumbers: Any=None, + calendar: Any=None, + categoryarray: numpy.ndarray=None, + categoryarraysrc: str=None, + categoryorder: Any=None, + color: str=None, + constrain: Any=None, + constraintoward: Any=None, + dividercolor: str=None, + dividerwidth: int|float=None, + domain: list=None, + dtick: Any=None, + exponentformat: Any=None, + fixedrange: bool=None, + gridcolor: str=None, + griddash: str=None, + gridwidth: int|float=None, + hoverformat: str=None, + insiderange: list=None, + labelalias: Any=None, + layer: Any=None, + linecolor: str=None, + linewidth: int|float=None, + matches: Any=None, + maxallowed: Any=None, + minallowed: Any=None, + minexponent: int|float=None, minor=None, - mirror=None, - nticks=None, - overlaying=None, - position=None, - range=None, + mirror: Any=None, + nticks: int=None, + overlaying: Any=None, + position: int|float=None, + range: list=None, rangebreaks=None, rangebreakdefaults=None, - rangemode=None, + rangemode: Any=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, + scaleanchor: Any=None, + scaleratio: int|float=None, + separatethousands: bool=None, + showdividers: bool=None, + showexponent: Any=None, + showgrid: bool=None, + showline: bool=None, + showspikes: bool=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + side: Any=None, + spikecolor: str=None, + spikedash: str=None, + spikemode: Any=None, + spikesnap: Any=None, + spikethickness: int|float=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabelindex: int=None, + ticklabelindexsrc: str=None, + ticklabelmode: Any=None, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelshift: int=None, + ticklabelstandoff: int=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + tickson: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - type=None, - uirevision=None, - visible=None, - zeroline=None, - zerolinecolor=None, - zerolinewidth=None, + type: Any=None, + uirevision: Any=None, + visible: bool=None, + zeroline: bool=None, + zerolinecolor: str=None, + zerolinewidth: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/_yaxis.py b/packages/python/plotly/plotly/graph_objs/layout/_yaxis.py index 2112086dea..7c2957b025 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/_yaxis.py +++ b/packages/python/plotly/plotly/graph_objs/layout/_yaxis.py @@ -2796,99 +2796,99 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - anchor=None, - automargin=None, - autorange=None, + anchor: Any=None, + automargin: Any=None, + autorange: Any=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, + autoshift: bool=None, + autotickangles: list=None, + autotypenumbers: Any=None, + calendar: Any=None, + categoryarray: numpy.ndarray=None, + categoryarraysrc: str=None, + categoryorder: Any=None, + color: str=None, + constrain: Any=None, + constraintoward: Any=None, + dividercolor: str=None, + dividerwidth: int|float=None, + domain: list=None, + dtick: Any=None, + exponentformat: Any=None, + fixedrange: bool=None, + gridcolor: str=None, + griddash: str=None, + gridwidth: int|float=None, + hoverformat: str=None, + insiderange: list=None, + labelalias: Any=None, + layer: Any=None, + linecolor: str=None, + linewidth: int|float=None, + matches: Any=None, + maxallowed: Any=None, + minallowed: Any=None, + minexponent: int|float=None, minor=None, - mirror=None, - nticks=None, - overlaying=None, - position=None, - range=None, + mirror: Any=None, + nticks: int=None, + overlaying: Any=None, + position: int|float=None, + range: list=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, + rangemode: Any=None, + scaleanchor: Any=None, + scaleratio: int|float=None, + separatethousands: bool=None, + shift: int|float=None, + showdividers: bool=None, + showexponent: Any=None, + showgrid: bool=None, + showline: bool=None, + showspikes: bool=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + side: Any=None, + spikecolor: str=None, + spikedash: str=None, + spikemode: Any=None, + spikesnap: Any=None, + spikethickness: int|float=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabelindex: int=None, + ticklabelindexsrc: str=None, + ticklabelmode: Any=None, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelshift: int=None, + ticklabelstandoff: int=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + tickson: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - type=None, - uirevision=None, - visible=None, - zeroline=None, - zerolinecolor=None, - zerolinewidth=None, + type: Any=None, + uirevision: Any=None, + visible: bool=None, + zeroline: bool=None, + zerolinecolor: str=None, + zerolinewidth: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/annotation/_font.py b/packages/python/plotly/plotly/graph_objs/layout/annotation/_font.py index c2f0474281..b9e024b295 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/annotation/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/annotation/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/annotation/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/layout/annotation/_hoverlabel.py index a8d7e592f6..c52a39ce5c 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/annotation/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/layout/annotation/_hoverlabel.py @@ -108,8 +108,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, + bgcolor: str=None, + bordercolor: str=None, font=None, **kwargs ): diff --git a/packages/python/plotly/plotly/graph_objs/layout/annotation/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/layout/annotation/hoverlabel/_font.py index b4d1332952..9326d8cda3 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/annotation/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/annotation/hoverlabel/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/_colorbar.py b/packages/python/plotly/plotly/graph_objs/layout/coloraxis/_colorbar.py index 49354b7384..eec4bf56eb 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/layout/coloraxis/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_tickfont.py index bc7fbfa755..56282193a9 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_tickformatstop.py index 948d83b4bf..634bc9a8bb 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_title.py index 169cb20518..231e14e299 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/title/_font.py index 162d27ef2e..3b721064f3 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/geo/_center.py b/packages/python/plotly/plotly/graph_objs/layout/geo/_center.py index a628ba7feb..5bf2941096 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/geo/_center.py +++ b/packages/python/plotly/plotly/graph_objs/layout/geo/_center.py @@ -74,8 +74,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - lat=None, - lon=None, + lat: int|float=None, + lon: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/geo/_domain.py b/packages/python/plotly/plotly/graph_objs/layout/geo/_domain.py index bb3219c5ba..be3eae6e51 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/geo/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/layout/geo/_domain.py @@ -150,10 +150,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/geo/_lataxis.py b/packages/python/plotly/plotly/graph_objs/layout/geo/_lataxis.py index 252418069a..e5207e988b 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/geo/_lataxis.py +++ b/packages/python/plotly/plotly/graph_objs/layout/geo/_lataxis.py @@ -194,13 +194,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, + gridcolor: str=None, + griddash: str=None, + gridwidth: int|float=None, + range: list=None, + showgrid: bool=None, + tick0: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/geo/_lonaxis.py b/packages/python/plotly/plotly/graph_objs/layout/geo/_lonaxis.py index 44cece1086..e3f2e994a3 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/geo/_lonaxis.py +++ b/packages/python/plotly/plotly/graph_objs/layout/geo/_lonaxis.py @@ -194,13 +194,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, + gridcolor: str=None, + griddash: str=None, + gridwidth: int|float=None, + range: list=None, + showgrid: bool=None, + tick0: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/geo/_projection.py b/packages/python/plotly/plotly/graph_objs/layout/geo/_projection.py index 4aa5518fae..18606cf993 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/geo/_projection.py +++ b/packages/python/plotly/plotly/graph_objs/layout/geo/_projection.py @@ -194,12 +194,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - distance=None, - parallels=None, + distance: int|float=None, + parallels: list=None, rotation=None, - scale=None, - tilt=None, - type=None, + scale: int|float=None, + tilt: int|float=None, + type: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/geo/projection/_rotation.py b/packages/python/plotly/plotly/graph_objs/layout/geo/projection/_rotation.py index 4cb605871f..02dc8401fe 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/geo/projection/_rotation.py +++ b/packages/python/plotly/plotly/graph_objs/layout/geo/projection/_rotation.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - lat=None, - lon=None, - roll=None, + lat: int|float=None, + lon: int|float=None, + roll: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/grid/_domain.py b/packages/python/plotly/plotly/graph_objs/layout/grid/_domain.py index 5de410518a..2fb72bc531 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/grid/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/layout/grid/_domain.py @@ -82,8 +82,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/layout/hoverlabel/_font.py index 16d47ce048..c715321d3a 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/hoverlabel/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/hoverlabel/_grouptitlefont.py b/packages/python/plotly/plotly/graph_objs/layout/hoverlabel/_grouptitlefont.py index 0a5089baa9..2ebe8299ac 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/hoverlabel/_grouptitlefont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/hoverlabel/_grouptitlefont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/legend/_font.py b/packages/python/plotly/plotly/graph_objs/layout/legend/_font.py index cf14f13cee..dbec4aaf54 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/legend/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/legend/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/legend/_grouptitlefont.py b/packages/python/plotly/plotly/graph_objs/layout/legend/_grouptitlefont.py index 84912c2301..d5b1e74a8d 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/legend/_grouptitlefont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/legend/_grouptitlefont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/legend/_title.py b/packages/python/plotly/plotly/graph_objs/layout/legend/_title.py index 6cf9f7c60c..273ac27a04 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/legend/_title.py +++ b/packages/python/plotly/plotly/graph_objs/layout/legend/_title.py @@ -103,8 +103,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/legend/title/_font.py b/packages/python/plotly/plotly/graph_objs/layout/legend/title/_font.py index 80e2df4c59..be002e101b 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/legend/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/legend/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/_bounds.py b/packages/python/plotly/plotly/graph_objs/layout/map/_bounds.py index 96424e1341..2ed25ec6a3 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/map/_bounds.py +++ b/packages/python/plotly/plotly/graph_objs/layout/map/_bounds.py @@ -116,10 +116,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - east=None, - north=None, - south=None, - west=None, + east: int|float=None, + north: int|float=None, + south: int|float=None, + west: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/_center.py b/packages/python/plotly/plotly/graph_objs/layout/map/_center.py index 137f9b909b..b9a15d6480 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/map/_center.py +++ b/packages/python/plotly/plotly/graph_objs/layout/map/_center.py @@ -66,8 +66,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - lat=None, - lon=None, + lat: int|float=None, + lon: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/_domain.py b/packages/python/plotly/plotly/graph_objs/layout/map/_domain.py index f4990b4e6e..1e85d85a00 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/map/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/layout/map/_domain.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/_layer.py b/packages/python/plotly/plotly/graph_objs/layout/map/_layer.py index c138d0c73d..999840f961 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/map/_layer.py +++ b/packages/python/plotly/plotly/graph_objs/layout/map/_layer.py @@ -537,24 +537,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - below=None, + below: str=None, circle=None, - color=None, - coordinates=None, + color: str=None, + coordinates: Any=None, fill=None, line=None, - maxzoom=None, - minzoom=None, - name=None, - opacity=None, - source=None, - sourceattribution=None, - sourcelayer=None, - sourcetype=None, + maxzoom: int|float=None, + minzoom: int|float=None, + name: str=None, + opacity: int|float=None, + source: Any=None, + sourceattribution: str=None, + sourcelayer: str=None, + sourcetype: Any=None, symbol=None, - templateitemname=None, - type=None, - visible=None, + templateitemname: str=None, + type: Any=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/layer/_circle.py b/packages/python/plotly/plotly/graph_objs/layout/map/layer/_circle.py index 48602c3b83..a371fa2988 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/map/layer/_circle.py +++ b/packages/python/plotly/plotly/graph_objs/layout/map/layer/_circle.py @@ -44,7 +44,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - radius=None, + radius: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/layer/_fill.py b/packages/python/plotly/plotly/graph_objs/layout/map/layer/_fill.py index a9fcc28996..8300e6ee52 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/map/layer/_fill.py +++ b/packages/python/plotly/plotly/graph_objs/layout/map/layer/_fill.py @@ -49,7 +49,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - outlinecolor=None, + outlinecolor: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/layer/_line.py b/packages/python/plotly/plotly/graph_objs/layout/map/layer/_line.py index 221a327066..9902e672aa 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/map/layer/_line.py +++ b/packages/python/plotly/plotly/graph_objs/layout/map/layer/_line.py @@ -92,9 +92,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dash=None, - dashsrc=None, - width=None, + dash: numpy.ndarray=None, + dashsrc: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/layer/_symbol.py b/packages/python/plotly/plotly/graph_objs/layout/map/layer/_symbol.py index ae1cd20fbc..a4d8cb8cfe 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/map/layer/_symbol.py +++ b/packages/python/plotly/plotly/graph_objs/layout/map/layer/_symbol.py @@ -182,12 +182,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - icon=None, - iconsize=None, - placement=None, - text=None, + icon: str=None, + iconsize: int|float=None, + placement: Any=None, + text: str=None, textfont=None, - textposition=None, + textposition: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/layer/symbol/_textfont.py b/packages/python/plotly/plotly/graph_objs/layout/map/layer/symbol/_textfont.py index d244a5e0e6..dbb21298c3 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/map/layer/symbol/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/map/layer/symbol/_textfont.py @@ -144,11 +144,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - size=None, - style=None, - weight=None, + color: str=None, + family: str=None, + size: int|float=None, + style: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/_bounds.py b/packages/python/plotly/plotly/graph_objs/layout/mapbox/_bounds.py index a885fc5d66..48761715fb 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/mapbox/_bounds.py +++ b/packages/python/plotly/plotly/graph_objs/layout/mapbox/_bounds.py @@ -116,10 +116,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - east=None, - north=None, - south=None, - west=None, + east: int|float=None, + north: int|float=None, + south: int|float=None, + west: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/_center.py b/packages/python/plotly/plotly/graph_objs/layout/mapbox/_center.py index 3357e121c2..95f14a9ba4 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/mapbox/_center.py +++ b/packages/python/plotly/plotly/graph_objs/layout/mapbox/_center.py @@ -66,8 +66,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - lat=None, - lon=None, + lat: int|float=None, + lon: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/_domain.py b/packages/python/plotly/plotly/graph_objs/layout/mapbox/_domain.py index c0efb06acf..27d5e65873 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/mapbox/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/layout/mapbox/_domain.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/_layer.py b/packages/python/plotly/plotly/graph_objs/layout/mapbox/_layer.py index fa6a8f57bf..720f76636f 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/mapbox/_layer.py +++ b/packages/python/plotly/plotly/graph_objs/layout/mapbox/_layer.py @@ -540,24 +540,24 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - below=None, + below: str=None, circle=None, - color=None, - coordinates=None, + color: str=None, + coordinates: Any=None, fill=None, line=None, - maxzoom=None, - minzoom=None, - name=None, - opacity=None, - source=None, - sourceattribution=None, - sourcelayer=None, - sourcetype=None, + maxzoom: int|float=None, + minzoom: int|float=None, + name: str=None, + opacity: int|float=None, + source: Any=None, + sourceattribution: str=None, + sourcelayer: str=None, + sourcetype: Any=None, symbol=None, - templateitemname=None, - type=None, - visible=None, + templateitemname: str=None, + type: Any=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_circle.py b/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_circle.py index 1fc8f2b607..9978c593b8 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_circle.py +++ b/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_circle.py @@ -45,7 +45,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - radius=None, + radius: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_fill.py b/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_fill.py index 043d65df4b..c7a935859d 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_fill.py +++ b/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_fill.py @@ -49,7 +49,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - outlinecolor=None, + outlinecolor: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_line.py b/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_line.py index 3a4eeeb27e..b29b2e1399 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_line.py +++ b/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_line.py @@ -92,9 +92,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dash=None, - dashsrc=None, - width=None, + dash: numpy.ndarray=None, + dashsrc: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_symbol.py b/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_symbol.py index 8b993d797f..b546894742 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_symbol.py +++ b/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_symbol.py @@ -183,12 +183,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - icon=None, - iconsize=None, - placement=None, - text=None, + icon: str=None, + iconsize: int|float=None, + placement: Any=None, + text: str=None, textfont=None, - textposition=None, + textposition: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/symbol/_textfont.py b/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/symbol/_textfont.py index 963c98e658..95be9957c4 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/symbol/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/symbol/_textfont.py @@ -144,11 +144,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - size=None, - style=None, - weight=None, + color: str=None, + family: str=None, + size: int|float=None, + style: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/newselection/_line.py b/packages/python/plotly/plotly/graph_objs/layout/newselection/_line.py index 9fab1a798c..f1a50572df 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/newselection/_line.py +++ b/packages/python/plotly/plotly/graph_objs/layout/newselection/_line.py @@ -101,9 +101,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str=None, + dash: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/newshape/_label.py b/packages/python/plotly/plotly/graph_objs/layout/newshape/_label.py index 73319da4f0..ac32dc087d 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/newshape/_label.py +++ b/packages/python/plotly/plotly/graph_objs/layout/newshape/_label.py @@ -291,13 +291,13 @@ 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, + padding: int|float=None, + text: str=None, + textangle: int|float=None, + textposition: Any=None, + texttemplate: str=None, + xanchor: Any=None, + yanchor: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/newshape/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/layout/newshape/_legendgrouptitle.py index 54bb33f83b..359395399f 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/newshape/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/layout/newshape/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/newshape/_line.py b/packages/python/plotly/plotly/graph_objs/layout/newshape/_line.py index ccaede09b6..349efb3f0f 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/newshape/_line.py +++ b/packages/python/plotly/plotly/graph_objs/layout/newshape/_line.py @@ -101,9 +101,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str=None, + dash: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/newshape/label/_font.py b/packages/python/plotly/plotly/graph_objs/layout/newshape/label/_font.py index 05746badfe..bdcf2de44c 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/newshape/label/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/newshape/label/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/newshape/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/layout/newshape/legendgrouptitle/_font.py index 5cef85f4b8..341b58e198 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/newshape/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/newshape/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/_angularaxis.py b/packages/python/plotly/plotly/graph_objs/layout/polar/_angularaxis.py index 00d973404c..55d7005aad 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/polar/_angularaxis.py +++ b/packages/python/plotly/plotly/graph_objs/layout/polar/_angularaxis.py @@ -1435,55 +1435,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, + autotypenumbers: Any=None, + categoryarray: numpy.ndarray=None, + categoryarraysrc: str=None, + categoryorder: Any=None, + color: str=None, + direction: Any=None, + dtick: Any=None, + exponentformat: Any=None, + gridcolor: str=None, + griddash: str=None, + gridwidth: int|float=None, + hoverformat: str=None, + labelalias: Any=None, + layer: Any=None, + linecolor: str=None, + linewidth: int|float=None, + minexponent: int|float=None, + nticks: int=None, + period: int|float=None, + rotation: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showgrid: bool=None, + showline: bool=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thetaunit: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, + type: Any=None, + uirevision: Any=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/_domain.py b/packages/python/plotly/plotly/graph_objs/layout/polar/_domain.py index 64d74f38a8..8c923fd43e 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/polar/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/layout/polar/_domain.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/_radialaxis.py b/packages/python/plotly/plotly/graph_objs/layout/polar/_radialaxis.py index 73696e1842..463f6e10e8 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/polar/_radialaxis.py +++ b/packages/python/plotly/plotly/graph_objs/layout/polar/_radialaxis.py @@ -1657,62 +1657,62 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - angle=None, - autorange=None, + angle: int|float=None, + autorange: Any=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, + autotickangles: list=None, + autotypenumbers: Any=None, + calendar: Any=None, + categoryarray: numpy.ndarray=None, + categoryarraysrc: str=None, + categoryorder: Any=None, + color: str=None, + dtick: Any=None, + exponentformat: Any=None, + gridcolor: str=None, + griddash: str=None, + gridwidth: int|float=None, + hoverformat: str=None, + labelalias: Any=None, + layer: Any=None, + linecolor: str=None, + linewidth: int|float=None, + maxallowed: Any=None, + minallowed: Any=None, + minexponent: int|float=None, + nticks: int=None, + range: list=None, + rangemode: Any=None, + separatethousands: bool=None, + showexponent: Any=None, + showgrid: bool=None, + showline: bool=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + side: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - type=None, - uirevision=None, - visible=None, + type: Any=None, + uirevision: Any=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/angularaxis/_tickfont.py b/packages/python/plotly/plotly/graph_objs/layout/polar/angularaxis/_tickfont.py index af9a5e8148..02510fc634 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/polar/angularaxis/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/polar/angularaxis/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/angularaxis/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/layout/polar/angularaxis/_tickformatstop.py index ebd6121da7..023f080010 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/polar/angularaxis/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/layout/polar/angularaxis/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_autorangeoptions.py b/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_autorangeoptions.py index 15d9ddbacb..044bfceade 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_autorangeoptions.py +++ b/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_autorangeoptions.py @@ -154,12 +154,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, + clipmin: Any=None, + include: Any=None, + includesrc: str=None, + maxallowed: Any=None, + minallowed: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_tickfont.py b/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_tickfont.py index 5e14fe0d25..61ae6f7997 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_tickformatstop.py index 30321349b5..9902e9eecb 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_title.py b/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_title.py index 5d3e247456..e4907f7467 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_title.py +++ b/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_title.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/title/_font.py b/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/title/_font.py index f22c9f6a91..1b80a4ff72 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/_annotation.py b/packages/python/plotly/plotly/graph_objs/layout/scene/_annotation.py index abd306ce29..c793ee02cb 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/_annotation.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/_annotation.py @@ -1011,43 +1011,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, + align: Any=None, + arrowcolor: str=None, + arrowhead: int=None, + arrowside: Any=None, + arrowsize: int|float=None, + arrowwidth: int|float=None, + ax: int|float=None, + ay: int|float=None, + bgcolor: str=None, + bordercolor: str=None, + borderpad: int|float=None, + borderwidth: int|float=None, + captureevents: bool=None, font=None, - height=None, + height: int|float=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, + hovertext: str=None, + name: str=None, + opacity: int|float=None, + showarrow: bool=None, + standoff: int|float=None, + startarrowhead: int=None, + startarrowsize: int|float=None, + startstandoff: int|float=None, + templateitemname: str=None, + text: str=None, + textangle: int|float=None, + valign: Any=None, + visible: bool=None, + width: int|float=None, + x: Any=None, + xanchor: Any=None, + xshift: int|float=None, + y: Any=None, + yanchor: Any=None, + yshift: int|float=None, + z: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/_aspectratio.py b/packages/python/plotly/plotly/graph_objs/layout/scene/_aspectratio.py index 4b904f9e64..ba538a4a9c 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/_aspectratio.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/_aspectratio.py @@ -80,9 +80,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float=None, + y: int|float=None, + z: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/_domain.py b/packages/python/plotly/plotly/graph_objs/layout/scene/_domain.py index 82d6b713ed..5a324999a5 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/_domain.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/_xaxis.py b/packages/python/plotly/plotly/graph_objs/layout/scene/_xaxis.py index aad84552aa..298521946e 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/_xaxis.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/_xaxis.py @@ -1721,66 +1721,66 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autorange=None, + autorange: Any=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, + autotypenumbers: Any=None, + backgroundcolor: str=None, + calendar: Any=None, + categoryarray: numpy.ndarray=None, + categoryarraysrc: str=None, + categoryorder: Any=None, + color: str=None, + dtick: Any=None, + exponentformat: Any=None, + gridcolor: str=None, + gridwidth: int|float=None, + hoverformat: str=None, + labelalias: Any=None, + linecolor: str=None, + linewidth: int|float=None, + maxallowed: Any=None, + minallowed: Any=None, + minexponent: int|float=None, + mirror: Any=None, + nticks: int=None, + range: list=None, + rangemode: Any=None, + separatethousands: bool=None, + showaxeslabels: bool=None, + showbackground: bool=None, + showexponent: Any=None, + showgrid: bool=None, + showline: bool=None, + showspikes: bool=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + spikecolor: str=None, + spikesides: bool=None, + spikethickness: int|float=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - type=None, - visible=None, - zeroline=None, - zerolinecolor=None, - zerolinewidth=None, + type: Any=None, + visible: bool=None, + zeroline: bool=None, + zerolinecolor: str=None, + zerolinewidth: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/_yaxis.py b/packages/python/plotly/plotly/graph_objs/layout/scene/_yaxis.py index 2edc0f35f2..8c92207e53 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/_yaxis.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/_yaxis.py @@ -1721,66 +1721,66 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autorange=None, + autorange: Any=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, + autotypenumbers: Any=None, + backgroundcolor: str=None, + calendar: Any=None, + categoryarray: numpy.ndarray=None, + categoryarraysrc: str=None, + categoryorder: Any=None, + color: str=None, + dtick: Any=None, + exponentformat: Any=None, + gridcolor: str=None, + gridwidth: int|float=None, + hoverformat: str=None, + labelalias: Any=None, + linecolor: str=None, + linewidth: int|float=None, + maxallowed: Any=None, + minallowed: Any=None, + minexponent: int|float=None, + mirror: Any=None, + nticks: int=None, + range: list=None, + rangemode: Any=None, + separatethousands: bool=None, + showaxeslabels: bool=None, + showbackground: bool=None, + showexponent: Any=None, + showgrid: bool=None, + showline: bool=None, + showspikes: bool=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + spikecolor: str=None, + spikesides: bool=None, + spikethickness: int|float=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - type=None, - visible=None, - zeroline=None, - zerolinecolor=None, - zerolinewidth=None, + type: Any=None, + visible: bool=None, + zeroline: bool=None, + zerolinecolor: str=None, + zerolinewidth: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/_zaxis.py b/packages/python/plotly/plotly/graph_objs/layout/scene/_zaxis.py index 16e1a6bdfb..8013d273a3 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/_zaxis.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/_zaxis.py @@ -1721,66 +1721,66 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autorange=None, + autorange: Any=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, + autotypenumbers: Any=None, + backgroundcolor: str=None, + calendar: Any=None, + categoryarray: numpy.ndarray=None, + categoryarraysrc: str=None, + categoryorder: Any=None, + color: str=None, + dtick: Any=None, + exponentformat: Any=None, + gridcolor: str=None, + gridwidth: int|float=None, + hoverformat: str=None, + labelalias: Any=None, + linecolor: str=None, + linewidth: int|float=None, + maxallowed: Any=None, + minallowed: Any=None, + minexponent: int|float=None, + mirror: Any=None, + nticks: int=None, + range: list=None, + rangemode: Any=None, + separatethousands: bool=None, + showaxeslabels: bool=None, + showbackground: bool=None, + showexponent: Any=None, + showgrid: bool=None, + showline: bool=None, + showspikes: bool=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + spikecolor: str=None, + spikesides: bool=None, + spikethickness: int|float=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - type=None, - visible=None, - zeroline=None, - zerolinecolor=None, - zerolinewidth=None, + type: Any=None, + visible: bool=None, + zeroline: bool=None, + zerolinecolor: str=None, + zerolinewidth: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/_font.py b/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/_font.py index 7487199de0..4fdae428a9 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/_hoverlabel.py index 4f2a5a2a32..566a59fbf3 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/_hoverlabel.py @@ -108,8 +108,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - bgcolor=None, - bordercolor=None, + bgcolor: str=None, + bordercolor: str=None, font=None, **kwargs ): diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/hoverlabel/_font.py index 560fb7640d..b9f672aa54 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/hoverlabel/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_center.py b/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_center.py index 5c25d314a2..84e17a771c 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_center.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_center.py @@ -80,9 +80,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float=None, + y: int|float=None, + z: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_eye.py b/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_eye.py index bbe4abdfcd..e1ef82d8ab 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_eye.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_eye.py @@ -80,9 +80,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float=None, + y: int|float=None, + z: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_projection.py b/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_projection.py index d921b4327f..89bbe77eb5 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_projection.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_projection.py @@ -46,7 +46,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - type=None, + type: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_up.py b/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_up.py index 9ebe64a08e..3020440798 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_up.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_up.py @@ -80,9 +80,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float=None, + y: int|float=None, + z: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_autorangeoptions.py b/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_autorangeoptions.py index 5191881679..a0a4f0b308 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_autorangeoptions.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_autorangeoptions.py @@ -154,12 +154,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, + clipmin: Any=None, + include: Any=None, + includesrc: str=None, + maxallowed: Any=None, + minallowed: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_tickfont.py b/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_tickfont.py index e2b7c42eff..392d1ff9ee 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_tickformatstop.py index 5ac4c5b05a..467f0f8a63 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_title.py b/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_title.py index 3908a6f846..ab64fcaf9a 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_title.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_title.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/title/_font.py b/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/title/_font.py index c404e43418..c050e9239f 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_autorangeoptions.py b/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_autorangeoptions.py index eb0a488c2b..92340b9687 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_autorangeoptions.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_autorangeoptions.py @@ -154,12 +154,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, + clipmin: Any=None, + include: Any=None, + includesrc: str=None, + maxallowed: Any=None, + minallowed: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_tickfont.py b/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_tickfont.py index 7b41eb9c74..08169ec9da 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_tickformatstop.py index 47387b8560..811f271453 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_title.py b/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_title.py index 1ac869973b..11536bce0d 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_title.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_title.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/title/_font.py b/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/title/_font.py index 4a9ebd95fa..547869436e 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_autorangeoptions.py b/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_autorangeoptions.py index 70ed37f387..39b0d56b9f 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_autorangeoptions.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_autorangeoptions.py @@ -154,12 +154,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, + clipmin: Any=None, + include: Any=None, + includesrc: str=None, + maxallowed: Any=None, + minallowed: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_tickfont.py b/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_tickfont.py index 84cb6c92b6..a50c218949 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_tickformatstop.py index 701e00c170..863dce46be 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_title.py b/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_title.py index d60a3a34ee..add568904c 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_title.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_title.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/title/_font.py b/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/title/_font.py index c8b47090b2..e700a652b0 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/selection/_line.py b/packages/python/plotly/plotly/graph_objs/layout/selection/_line.py index 015be2e906..d41d04279f 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/selection/_line.py +++ b/packages/python/plotly/plotly/graph_objs/layout/selection/_line.py @@ -99,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str=None, + dash: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/shape/_label.py b/packages/python/plotly/plotly/graph_objs/layout/shape/_label.py index 0b9bb0c4c0..83cd2a6125 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/shape/_label.py +++ b/packages/python/plotly/plotly/graph_objs/layout/shape/_label.py @@ -290,13 +290,13 @@ 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, + padding: int|float=None, + text: str=None, + textangle: int|float=None, + textposition: Any=None, + texttemplate: str=None, + xanchor: Any=None, + yanchor: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/shape/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/layout/shape/_legendgrouptitle.py index bd673c7f10..1a68500f03 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/shape/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/layout/shape/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/shape/_line.py b/packages/python/plotly/plotly/graph_objs/layout/shape/_line.py index 888dea38f1..e68d62f91f 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/shape/_line.py +++ b/packages/python/plotly/plotly/graph_objs/layout/shape/_line.py @@ -99,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str=None, + dash: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/shape/label/_font.py b/packages/python/plotly/plotly/graph_objs/layout/shape/label/_font.py index 1ec2da2fee..3ebd007cfa 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/shape/label/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/shape/label/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/shape/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/layout/shape/legendgrouptitle/_font.py index 653a20b0df..94071a0a0b 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/shape/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/shape/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/slider/_currentvalue.py b/packages/python/plotly/plotly/graph_objs/layout/slider/_currentvalue.py index 7264e0432e..94e5d2622d 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/slider/_currentvalue.py +++ b/packages/python/plotly/plotly/graph_objs/layout/slider/_currentvalue.py @@ -167,11 +167,11 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - offset=None, - prefix=None, - suffix=None, - visible=None, - xanchor=None, + offset: int|float=None, + prefix: str=None, + suffix: str=None, + visible: bool=None, + xanchor: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/slider/_font.py b/packages/python/plotly/plotly/graph_objs/layout/slider/_font.py index 5a93a0ed13..067c9f57e6 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/slider/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/slider/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/slider/_pad.py b/packages/python/plotly/plotly/graph_objs/layout/slider/_pad.py index b1ef4b92c5..2eb2af8d2b 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/slider/_pad.py +++ b/packages/python/plotly/plotly/graph_objs/layout/slider/_pad.py @@ -115,10 +115,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - b=None, - l=None, - r=None, - t=None, + b: int|float=None, + l: int|float=None, + r: int|float=None, + t: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/slider/_step.py b/packages/python/plotly/plotly/graph_objs/layout/slider/_step.py index de0a7f9dea..fdb101bd93 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/slider/_step.py +++ b/packages/python/plotly/plotly/graph_objs/layout/slider/_step.py @@ -261,14 +261,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, + execute: bool=None, + label: str=None, + method: Any=None, + name: str=None, + templateitemname: str=None, + value: str=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/slider/_transition.py b/packages/python/plotly/plotly/graph_objs/layout/slider/_transition.py index 8054aa7a78..4b791a5cda 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/slider/_transition.py +++ b/packages/python/plotly/plotly/graph_objs/layout/slider/_transition.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - duration=None, - easing=None, + duration: int|float=None, + easing: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/slider/currentvalue/_font.py b/packages/python/plotly/plotly/graph_objs/layout/slider/currentvalue/_font.py index 0af9afe141..4dc067527b 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/slider/currentvalue/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/slider/currentvalue/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/smith/_domain.py b/packages/python/plotly/plotly/graph_objs/layout/smith/_domain.py index 8e9c5d2516..539ebe925a 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/smith/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/layout/smith/_domain.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/smith/_imaginaryaxis.py b/packages/python/plotly/plotly/graph_objs/layout/smith/_imaginaryaxis.py index c6043a72d3..320a5295ed 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/smith/_imaginaryaxis.py +++ b/packages/python/plotly/plotly/graph_objs/layout/smith/_imaginaryaxis.py @@ -698,31 +698,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, + color: str=None, + gridcolor: str=None, + griddash: str=None, + gridwidth: int|float=None, + hoverformat: str=None, + labelalias: Any=None, + layer: Any=None, + linecolor: str=None, + linewidth: int|float=None, + showgrid: bool=None, + showline: bool=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + tickcolor: str=None, tickfont=None, - tickformat=None, - ticklen=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - visible=None, + tickformat: str=None, + ticklen: int|float=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/smith/_realaxis.py b/packages/python/plotly/plotly/graph_objs/layout/smith/_realaxis.py index 43c8518dd6..3f07f9be19 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/smith/_realaxis.py +++ b/packages/python/plotly/plotly/graph_objs/layout/smith/_realaxis.py @@ -748,33 +748,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, + color: str=None, + gridcolor: str=None, + griddash: str=None, + gridwidth: int|float=None, + hoverformat: str=None, + labelalias: Any=None, + layer: Any=None, + linecolor: str=None, + linewidth: int|float=None, + showgrid: bool=None, + showline: bool=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + side: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, - ticklen=None, - tickprefix=None, - ticks=None, - ticksuffix=None, - tickvals=None, - tickvalssrc=None, - tickwidth=None, - visible=None, + tickformat: str=None, + ticklen: int|float=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/smith/imaginaryaxis/_tickfont.py b/packages/python/plotly/plotly/graph_objs/layout/smith/imaginaryaxis/_tickfont.py index 6ac0cfae88..6a07855fee 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/smith/imaginaryaxis/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/smith/imaginaryaxis/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/smith/realaxis/_tickfont.py b/packages/python/plotly/plotly/graph_objs/layout/smith/realaxis/_tickfont.py index a54627067e..3ec106ff70 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/smith/realaxis/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/smith/realaxis/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/_aaxis.py b/packages/python/plotly/plotly/graph_objs/layout/ternary/_aaxis.py index f6696ca26c..1df862863c 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/ternary/_aaxis.py +++ b/packages/python/plotly/plotly/graph_objs/layout/ternary/_aaxis.py @@ -1188,47 +1188,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, + color: str=None, + dtick: Any=None, + exponentformat: Any=None, + gridcolor: str=None, + griddash: str=None, + gridwidth: int|float=None, + hoverformat: str=None, + labelalias: Any=None, + layer: Any=None, + linecolor: str=None, + linewidth: int|float=None, + min: int|float=None, + minexponent: int|float=None, + nticks: int=None, + separatethousands: bool=None, + showexponent: Any=None, + showgrid: bool=None, + showline: bool=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - uirevision=None, + uirevision: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/_baxis.py b/packages/python/plotly/plotly/graph_objs/layout/ternary/_baxis.py index ce12c0bf79..5a0c6cf0f2 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/ternary/_baxis.py +++ b/packages/python/plotly/plotly/graph_objs/layout/ternary/_baxis.py @@ -1188,47 +1188,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, + color: str=None, + dtick: Any=None, + exponentformat: Any=None, + gridcolor: str=None, + griddash: str=None, + gridwidth: int|float=None, + hoverformat: str=None, + labelalias: Any=None, + layer: Any=None, + linecolor: str=None, + linewidth: int|float=None, + min: int|float=None, + minexponent: int|float=None, + nticks: int=None, + separatethousands: bool=None, + showexponent: Any=None, + showgrid: bool=None, + showline: bool=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - uirevision=None, + uirevision: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/_caxis.py b/packages/python/plotly/plotly/graph_objs/layout/ternary/_caxis.py index 7a85dedcb5..cd356e5033 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/ternary/_caxis.py +++ b/packages/python/plotly/plotly/graph_objs/layout/ternary/_caxis.py @@ -1188,47 +1188,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, + color: str=None, + dtick: Any=None, + exponentformat: Any=None, + gridcolor: str=None, + griddash: str=None, + gridwidth: int|float=None, + hoverformat: str=None, + labelalias: Any=None, + layer: Any=None, + linecolor: str=None, + linewidth: int|float=None, + min: int|float=None, + minexponent: int|float=None, + nticks: int=None, + separatethousands: bool=None, + showexponent: Any=None, + showgrid: bool=None, + showline: bool=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - uirevision=None, + uirevision: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/_domain.py b/packages/python/plotly/plotly/graph_objs/layout/ternary/_domain.py index 79ff9c067c..609bc3b16d 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/ternary/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/layout/ternary/_domain.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_tickfont.py b/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_tickfont.py index 053f1304a8..2d1911a6ad 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_tickformatstop.py index a4c395bf91..8fff3887fe 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_title.py b/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_title.py index a0a661c981..19c4d453de 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_title.py +++ b/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_title.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/title/_font.py b/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/title/_font.py index 495223b665..dc21d577c4 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_tickfont.py b/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_tickfont.py index 5e227764d8..cee0465015 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_tickformatstop.py index b2131f48b3..2288e26c01 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_title.py b/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_title.py index 40643f9905..ecdf171127 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_title.py +++ b/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_title.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/title/_font.py b/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/title/_font.py index ea66f1c16e..717ee17f87 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_tickfont.py b/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_tickfont.py index e109e2d5f3..f1bdf6f76f 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_tickformatstop.py index 45ec4c77c1..21205ea147 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_title.py b/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_title.py index 535b81f770..4c039cff89 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_title.py +++ b/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_title.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/title/_font.py b/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/title/_font.py index f84b3751d3..36fa9cc080 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/title/_font.py b/packages/python/plotly/plotly/graph_objs/layout/title/_font.py index 5f4c2c4ca4..5297d2f942 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/title/_pad.py b/packages/python/plotly/plotly/graph_objs/layout/title/_pad.py index 027868f3a0..10f0c01649 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/title/_pad.py +++ b/packages/python/plotly/plotly/graph_objs/layout/title/_pad.py @@ -115,10 +115,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - b=None, - l=None, - r=None, - t=None, + b: int|float=None, + l: int|float=None, + r: int|float=None, + t: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/title/_subtitle.py b/packages/python/plotly/plotly/graph_objs/layout/title/_subtitle.py index ee14a583c9..5b1d8253be 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/title/_subtitle.py +++ b/packages/python/plotly/plotly/graph_objs/layout/title/_subtitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/title/subtitle/_font.py b/packages/python/plotly/plotly/graph_objs/layout/title/subtitle/_font.py index fcc382b432..d4d4d791d7 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/title/subtitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/title/subtitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/updatemenu/_button.py b/packages/python/plotly/plotly/graph_objs/layout/updatemenu/_button.py index 67ea1b8778..58f1a0c699 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/updatemenu/_button.py +++ b/packages/python/plotly/plotly/graph_objs/layout/updatemenu/_button.py @@ -265,14 +265,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, + args2: list=None, + execute: bool=None, + label: str=None, + method: Any=None, + name: str=None, + templateitemname: str=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/updatemenu/_font.py b/packages/python/plotly/plotly/graph_objs/layout/updatemenu/_font.py index f828598948..fec7a828dc 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/updatemenu/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/updatemenu/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/updatemenu/_pad.py b/packages/python/plotly/plotly/graph_objs/layout/updatemenu/_pad.py index bbb91772e8..45f5f75889 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/updatemenu/_pad.py +++ b/packages/python/plotly/plotly/graph_objs/layout/updatemenu/_pad.py @@ -115,10 +115,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - b=None, - l=None, - r=None, - t=None, + b: int|float=None, + l: int|float=None, + r: int|float=None, + t: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_autorangeoptions.py b/packages/python/plotly/plotly/graph_objs/layout/xaxis/_autorangeoptions.py index 490b07747e..c2e7e1f16b 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_autorangeoptions.py +++ b/packages/python/plotly/plotly/graph_objs/layout/xaxis/_autorangeoptions.py @@ -154,12 +154,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, + clipmin: Any=None, + include: Any=None, + includesrc: str=None, + maxallowed: Any=None, + minallowed: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_minor.py b/packages/python/plotly/plotly/graph_objs/layout/xaxis/_minor.py index de0e9f82fa..89144225e7 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_minor.py +++ b/packages/python/plotly/plotly/graph_objs/layout/xaxis/_minor.py @@ -434,20 +434,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, + gridcolor: str=None, + griddash: str=None, + gridwidth: int|float=None, + nticks: int=None, + showgrid: bool=None, + tick0: Any=None, + tickcolor: str=None, + ticklen: int|float=None, + tickmode: Any=None, + ticks: Any=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangebreak.py b/packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangebreak.py index f81ed00ae4..158415531a 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangebreak.py +++ b/packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangebreak.py @@ -239,13 +239,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, + dvalue: int|float=None, + enabled: bool=None, + name: str=None, + pattern: Any=None, + templateitemname: str=None, + values: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangeselector.py b/packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangeselector.py index 99756628db..db58339bcf 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangeselector.py +++ b/packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangeselector.py @@ -336,18 +336,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - activecolor=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, + activecolor: str=None, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, buttons=None, buttondefaults=None, font=None, - visible=None, - x=None, - xanchor=None, - y=None, - yanchor=None, + visible: bool=None, + x: int|float=None, + xanchor: Any=None, + y: int|float=None, + yanchor: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangeslider.py b/packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangeslider.py index 5ec5fd7096..b246567bff 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangeslider.py +++ b/packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangeslider.py @@ -234,13 +234,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autorange=None, - bgcolor=None, - bordercolor=None, - borderwidth=None, - range=None, - thickness=None, - visible=None, + autorange: bool=None, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int=None, + range: list=None, + thickness: int|float=None, + visible: bool=None, yaxis=None, **kwargs ): diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_tickfont.py b/packages/python/plotly/plotly/graph_objs/layout/xaxis/_tickfont.py index dca9db9068..6dbd8bd659 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/xaxis/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/layout/xaxis/_tickformatstop.py index ae754825c5..b2e5375516 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/layout/xaxis/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_title.py b/packages/python/plotly/plotly/graph_objs/layout/xaxis/_title.py index 3f6be61b6c..5e07ccee07 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_title.py +++ b/packages/python/plotly/plotly/graph_objs/layout/xaxis/_title.py @@ -106,8 +106,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - standoff=None, - text=None, + standoff: int|float=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeselector/_button.py b/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeselector/_button.py index 2f30ba4cec..e3347b54a6 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeselector/_button.py +++ b/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeselector/_button.py @@ -229,13 +229,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, + label: str=None, + name: str=None, + step: Any=None, + stepmode: Any=None, + templateitemname: str=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeselector/_font.py b/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeselector/_font.py index b70737ce81..2d1a38ba73 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeselector/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeselector/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeslider/_yaxis.py b/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeslider/_yaxis.py index ae1d001957..eafe0c4208 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeslider/_yaxis.py +++ b/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeslider/_yaxis.py @@ -77,8 +77,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - range=None, - rangemode=None, + range: list=None, + rangemode: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/title/_font.py b/packages/python/plotly/plotly/graph_objs/layout/xaxis/title/_font.py index 82eb55762d..1179694ade 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/xaxis/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/xaxis/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_autorangeoptions.py b/packages/python/plotly/plotly/graph_objs/layout/yaxis/_autorangeoptions.py index be3e669048..cd13c6a073 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_autorangeoptions.py +++ b/packages/python/plotly/plotly/graph_objs/layout/yaxis/_autorangeoptions.py @@ -154,12 +154,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, + clipmin: Any=None, + include: Any=None, + includesrc: str=None, + maxallowed: Any=None, + minallowed: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_minor.py b/packages/python/plotly/plotly/graph_objs/layout/yaxis/_minor.py index 8e06dde7f6..b436af9550 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_minor.py +++ b/packages/python/plotly/plotly/graph_objs/layout/yaxis/_minor.py @@ -434,20 +434,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, + gridcolor: str=None, + griddash: str=None, + gridwidth: int|float=None, + nticks: int=None, + showgrid: bool=None, + tick0: Any=None, + tickcolor: str=None, + ticklen: int|float=None, + tickmode: Any=None, + ticks: Any=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_rangebreak.py b/packages/python/plotly/plotly/graph_objs/layout/yaxis/_rangebreak.py index 5b326d6b92..40ddd0cbf2 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_rangebreak.py +++ b/packages/python/plotly/plotly/graph_objs/layout/yaxis/_rangebreak.py @@ -239,13 +239,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, + dvalue: int|float=None, + enabled: bool=None, + name: str=None, + pattern: Any=None, + templateitemname: str=None, + values: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_tickfont.py b/packages/python/plotly/plotly/graph_objs/layout/yaxis/_tickfont.py index 3b5bd043c3..cf6d223640 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/layout/yaxis/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/layout/yaxis/_tickformatstop.py index 0179bb1d70..2dd9786927 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/layout/yaxis/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_title.py b/packages/python/plotly/plotly/graph_objs/layout/yaxis/_title.py index 709a010d4d..849b77ce15 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_title.py +++ b/packages/python/plotly/plotly/graph_objs/layout/yaxis/_title.py @@ -106,8 +106,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - standoff=None, - text=None, + standoff: int|float=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/layout/yaxis/title/_font.py b/packages/python/plotly/plotly/graph_objs/layout/yaxis/title/_font.py index 451185782d..fd4091790d 100644 --- a/packages/python/plotly/plotly/graph_objs/layout/yaxis/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/layout/yaxis/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/_colorbar.py b/packages/python/plotly/plotly/graph_objs/mesh3d/_colorbar.py index 00042304ea..26ebf39e8a 100644 --- a/packages/python/plotly/plotly/graph_objs/mesh3d/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/mesh3d/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/_contour.py b/packages/python/plotly/plotly/graph_objs/mesh3d/_contour.py index 0ebe517aae..13523297a2 100644 --- a/packages/python/plotly/plotly/graph_objs/mesh3d/_contour.py +++ b/packages/python/plotly/plotly/graph_objs/mesh3d/_contour.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - show=None, - width=None, + color: str=None, + show: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/mesh3d/_hoverlabel.py index d531426710..2a0282fda1 100644 --- a/packages/python/plotly/plotly/graph_objs/mesh3d/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/mesh3d/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/mesh3d/_legendgrouptitle.py index 0582a17fc6..eb28fc09db 100644 --- a/packages/python/plotly/plotly/graph_objs/mesh3d/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/mesh3d/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/_lighting.py b/packages/python/plotly/plotly/graph_objs/mesh3d/_lighting.py index 19a5503789..0934d8992b 100644 --- a/packages/python/plotly/plotly/graph_objs/mesh3d/_lighting.py +++ b/packages/python/plotly/plotly/graph_objs/mesh3d/_lighting.py @@ -191,13 +191,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, + diffuse: int|float=None, + facenormalsepsilon: int|float=None, + fresnel: int|float=None, + roughness: int|float=None, + specular: int|float=None, + vertexnormalsepsilon: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/_lightposition.py b/packages/python/plotly/plotly/graph_objs/mesh3d/_lightposition.py index 02031b0ca2..07eb237ee1 100644 --- a/packages/python/plotly/plotly/graph_objs/mesh3d/_lightposition.py +++ b/packages/python/plotly/plotly/graph_objs/mesh3d/_lightposition.py @@ -89,9 +89,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float=None, + y: int|float=None, + z: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/_stream.py b/packages/python/plotly/plotly/graph_objs/mesh3d/_stream.py index 14ea21d7be..f36e487f82 100644 --- a/packages/python/plotly/plotly/graph_objs/mesh3d/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/mesh3d/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_tickfont.py index fe6424c1ed..f85121b802 100644 --- a/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_tickformatstop.py index ad58711411..6b2b89acf9 100644 --- a/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_title.py index 6e5891d217..0007486747 100644 --- a/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/title/_font.py index bcd5dba9c7..3c88304708 100644 --- a/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/mesh3d/hoverlabel/_font.py index 3adcc8926b..5d0404a93b 100644 --- a/packages/python/plotly/plotly/graph_objs/mesh3d/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/mesh3d/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/mesh3d/legendgrouptitle/_font.py index c212a89e21..7163a3e6cf 100644 --- a/packages/python/plotly/plotly/graph_objs/mesh3d/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/mesh3d/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/ohlc/_hoverlabel.py index 4dd37a7023..7615275b2b 100644 --- a/packages/python/plotly/plotly/graph_objs/ohlc/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/ohlc/_hoverlabel.py @@ -282,16 +282,16 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, - split=None, + namelength: int=None, + namelengthsrc: str=None, + split: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/ohlc/_legendgrouptitle.py index bf582c1f57..5a288f7995 100644 --- a/packages/python/plotly/plotly/graph_objs/ohlc/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/ohlc/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/_line.py b/packages/python/plotly/plotly/graph_objs/ohlc/_line.py index 01d112e011..1540d381e6 100644 --- a/packages/python/plotly/plotly/graph_objs/ohlc/_line.py +++ b/packages/python/plotly/plotly/graph_objs/ohlc/_line.py @@ -81,8 +81,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dash=None, - width=None, + dash: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/_stream.py b/packages/python/plotly/plotly/graph_objs/ohlc/_stream.py index 7f4792011a..2ce7b70716 100644 --- a/packages/python/plotly/plotly/graph_objs/ohlc/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/ohlc/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/decreasing/_line.py b/packages/python/plotly/plotly/graph_objs/ohlc/decreasing/_line.py index f753c4689f..e99b70e58b 100644 --- a/packages/python/plotly/plotly/graph_objs/ohlc/decreasing/_line.py +++ b/packages/python/plotly/plotly/graph_objs/ohlc/decreasing/_line.py @@ -99,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str=None, + dash: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/ohlc/hoverlabel/_font.py index 15782ab689..dbe1c517fd 100644 --- a/packages/python/plotly/plotly/graph_objs/ohlc/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/ohlc/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/increasing/_line.py b/packages/python/plotly/plotly/graph_objs/ohlc/increasing/_line.py index 380e662aba..4d2f29e900 100644 --- a/packages/python/plotly/plotly/graph_objs/ohlc/increasing/_line.py +++ b/packages/python/plotly/plotly/graph_objs/ohlc/increasing/_line.py @@ -99,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str=None, + dash: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/ohlc/legendgrouptitle/_font.py index 60abd06f95..24ce8f6636 100644 --- a/packages/python/plotly/plotly/graph_objs/ohlc/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/ohlc/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcats/_dimension.py b/packages/python/plotly/plotly/graph_objs/parcats/_dimension.py index 6d16f32630..a784d4ca92 100644 --- a/packages/python/plotly/plotly/graph_objs/parcats/_dimension.py +++ b/packages/python/plotly/plotly/graph_objs/parcats/_dimension.py @@ -288,16 +288,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: numpy.ndarray=None, + categoryarraysrc: str=None, + categoryorder: Any=None, + displayindex: int=None, + label: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcats/_domain.py b/packages/python/plotly/plotly/graph_objs/parcats/_domain.py index f10c867b03..76269faf65 100644 --- a/packages/python/plotly/plotly/graph_objs/parcats/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/parcats/_domain.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcats/_labelfont.py b/packages/python/plotly/plotly/graph_objs/parcats/_labelfont.py index 6877db9764..373e947029 100644 --- a/packages/python/plotly/plotly/graph_objs/parcats/_labelfont.py +++ b/packages/python/plotly/plotly/graph_objs/parcats/_labelfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcats/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/parcats/_legendgrouptitle.py index 83178584eb..7b8494f92b 100644 --- a/packages/python/plotly/plotly/graph_objs/parcats/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/parcats/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcats/_line.py b/packages/python/plotly/plotly/graph_objs/parcats/_line.py index dc00dd118f..e3303a46ea 100644 --- a/packages/python/plotly/plotly/graph_objs/parcats/_line.py +++ b/packages/python/plotly/plotly/graph_objs/parcats/_line.py @@ -517,20 +517,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, - hovertemplate=None, - reversescale=None, - shape=None, - showscale=None, + colorscale: str=None, + colorsrc: str=None, + hovertemplate: str=None, + reversescale: bool=None, + shape: Any=None, + showscale: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcats/_stream.py b/packages/python/plotly/plotly/graph_objs/parcats/_stream.py index 1a3fa79b56..432aa35590 100644 --- a/packages/python/plotly/plotly/graph_objs/parcats/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/parcats/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcats/_tickfont.py b/packages/python/plotly/plotly/graph_objs/parcats/_tickfont.py index 69056824f2..2ab13bec44 100644 --- a/packages/python/plotly/plotly/graph_objs/parcats/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/parcats/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcats/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/parcats/legendgrouptitle/_font.py index 10b16b7289..db011315f5 100644 --- a/packages/python/plotly/plotly/graph_objs/parcats/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/parcats/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcats/line/_colorbar.py b/packages/python/plotly/plotly/graph_objs/parcats/line/_colorbar.py index 856555f8ee..18218ed4b0 100644 --- a/packages/python/plotly/plotly/graph_objs/parcats/line/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/parcats/line/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_tickfont.py index 38acc2d120..83de39afe5 100644 --- a/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_tickformatstop.py index 363fbca352..0fa42d2a01 100644 --- a/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_title.py index 939da12388..46b0587f69 100644 --- a/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/title/_font.py index d160cae084..4b054b38f3 100644 --- a/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_dimension.py b/packages/python/plotly/plotly/graph_objs/parcoords/_dimension.py index 2158879b35..80ce5327b6 100644 --- a/packages/python/plotly/plotly/graph_objs/parcoords/_dimension.py +++ b/packages/python/plotly/plotly/graph_objs/parcoords/_dimension.py @@ -419,20 +419,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, + label: str=None, + multiselect: bool=None, + name: str=None, + range: list=None, + templateitemname: str=None, + tickformat: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_domain.py b/packages/python/plotly/plotly/graph_objs/parcoords/_domain.py index fc0fc7c638..a79132d66a 100644 --- a/packages/python/plotly/plotly/graph_objs/parcoords/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/parcoords/_domain.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_labelfont.py b/packages/python/plotly/plotly/graph_objs/parcoords/_labelfont.py index 9e6602ae79..36d688296a 100644 --- a/packages/python/plotly/plotly/graph_objs/parcoords/_labelfont.py +++ b/packages/python/plotly/plotly/graph_objs/parcoords/_labelfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/parcoords/_legendgrouptitle.py index 502e452333..67fc1bbd1c 100644 --- a/packages/python/plotly/plotly/graph_objs/parcoords/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/parcoords/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_line.py b/packages/python/plotly/plotly/graph_objs/parcoords/_line.py index 74cd9b24a3..9849528363 100644 --- a/packages/python/plotly/plotly/graph_objs/parcoords/_line.py +++ b/packages/python/plotly/plotly/graph_objs/parcoords/_line.py @@ -413,18 +413,18 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, - reversescale=None, - showscale=None, + colorscale: str=None, + colorsrc: str=None, + reversescale: bool=None, + showscale: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_rangefont.py b/packages/python/plotly/plotly/graph_objs/parcoords/_rangefont.py index aa190db1b8..408e89be30 100644 --- a/packages/python/plotly/plotly/graph_objs/parcoords/_rangefont.py +++ b/packages/python/plotly/plotly/graph_objs/parcoords/_rangefont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_stream.py b/packages/python/plotly/plotly/graph_objs/parcoords/_stream.py index 7c4a2f464f..9da49f3603 100644 --- a/packages/python/plotly/plotly/graph_objs/parcoords/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/parcoords/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_tickfont.py b/packages/python/plotly/plotly/graph_objs/parcoords/_tickfont.py index 99845156bf..7f39ffc728 100644 --- a/packages/python/plotly/plotly/graph_objs/parcoords/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/parcoords/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/parcoords/legendgrouptitle/_font.py index 585c55893a..f97fcc5648 100644 --- a/packages/python/plotly/plotly/graph_objs/parcoords/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/parcoords/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/line/_colorbar.py b/packages/python/plotly/plotly/graph_objs/parcoords/line/_colorbar.py index 28cce04b01..43881b086a 100644 --- a/packages/python/plotly/plotly/graph_objs/parcoords/line/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/parcoords/line/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_tickfont.py index 35781eee74..3b6b6400df 100644 --- a/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_tickformatstop.py index df48e9ebfb..c4322addb7 100644 --- a/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_title.py index 699de72e57..96d9efa9a3 100644 --- a/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/title/_font.py index 41d11dbc6d..c60ca9dbd1 100644 --- a/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/unselected/_line.py b/packages/python/plotly/plotly/graph_objs/parcoords/unselected/_line.py index 35afe87fb4..d04cd89032 100644 --- a/packages/python/plotly/plotly/graph_objs/parcoords/unselected/_line.py +++ b/packages/python/plotly/plotly/graph_objs/parcoords/unselected/_line.py @@ -75,8 +75,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, + color: str=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/pie/_domain.py b/packages/python/plotly/plotly/graph_objs/pie/_domain.py index cafe539672..f64b868d79 100644 --- a/packages/python/plotly/plotly/graph_objs/pie/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/pie/_domain.py @@ -127,10 +127,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/pie/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/pie/_hoverlabel.py index 575bce5a6f..7540459e43 100644 --- a/packages/python/plotly/plotly/graph_objs/pie/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/pie/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/pie/_insidetextfont.py b/packages/python/plotly/plotly/graph_objs/pie/_insidetextfont.py index 68871ccf2f..86a2d3611b 100644 --- a/packages/python/plotly/plotly/graph_objs/pie/_insidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/pie/_insidetextfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/pie/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/pie/_legendgrouptitle.py index f37f95590f..e74ba55da0 100644 --- a/packages/python/plotly/plotly/graph_objs/pie/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/pie/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/pie/_marker.py b/packages/python/plotly/plotly/graph_objs/pie/_marker.py index 2d16e6053b..443a594111 100644 --- a/packages/python/plotly/plotly/graph_objs/pie/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/pie/_marker.py @@ -117,8 +117,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - colors=None, - colorssrc=None, + colors: numpy.ndarray=None, + colorssrc: str=None, line=None, pattern=None, **kwargs diff --git a/packages/python/plotly/plotly/graph_objs/pie/_outsidetextfont.py b/packages/python/plotly/plotly/graph_objs/pie/_outsidetextfont.py index aa5f29d5eb..5d9b5bee09 100644 --- a/packages/python/plotly/plotly/graph_objs/pie/_outsidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/pie/_outsidetextfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/pie/_stream.py b/packages/python/plotly/plotly/graph_objs/pie/_stream.py index a90f9fb857..5a8ef49c93 100644 --- a/packages/python/plotly/plotly/graph_objs/pie/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/pie/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/pie/_textfont.py b/packages/python/plotly/plotly/graph_objs/pie/_textfont.py index 66ceb83f08..fcf2279e28 100644 --- a/packages/python/plotly/plotly/graph_objs/pie/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/pie/_textfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/pie/_title.py b/packages/python/plotly/plotly/graph_objs/pie/_title.py index 9463890fe5..9582996ff3 100644 --- a/packages/python/plotly/plotly/graph_objs/pie/_title.py +++ b/packages/python/plotly/plotly/graph_objs/pie/_title.py @@ -95,8 +95,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - position=None, - text=None, + position: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/pie/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/pie/hoverlabel/_font.py index c89fb39687..a843a982f0 100644 --- a/packages/python/plotly/plotly/graph_objs/pie/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/pie/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/pie/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/pie/legendgrouptitle/_font.py index cc238be12d..46054f59e4 100644 --- a/packages/python/plotly/plotly/graph_objs/pie/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/pie/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/pie/marker/_line.py b/packages/python/plotly/plotly/graph_objs/pie/marker/_line.py index 12535499b6..a960f5d531 100644 --- a/packages/python/plotly/plotly/graph_objs/pie/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/pie/marker/_line.py @@ -117,10 +117,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str=None, + colorsrc: str=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/pie/marker/_pattern.py b/packages/python/plotly/plotly/graph_objs/pie/marker/_pattern.py index 3a6eebe278..79551ceafe 100644 --- a/packages/python/plotly/plotly/graph_objs/pie/marker/_pattern.py +++ b/packages/python/plotly/plotly/graph_objs/pie/marker/_pattern.py @@ -334,18 +334,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, + bgcolorsrc: str=None, + fgcolor: str=None, + fgcolorsrc: str=None, + fgopacity: int|float=None, + fillmode: Any=None, + shape: Any=None, + shapesrc: str=None, + size: int|float=None, + sizesrc: str=None, + solidity: int|float=None, + soliditysrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/pie/title/_font.py b/packages/python/plotly/plotly/graph_objs/pie/title/_font.py index e7c6395099..ea8b8b1669 100644 --- a/packages/python/plotly/plotly/graph_objs/pie/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/pie/title/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sankey/_domain.py b/packages/python/plotly/plotly/graph_objs/sankey/_domain.py index f835735d1f..0adb8b433a 100644 --- a/packages/python/plotly/plotly/graph_objs/sankey/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/sankey/_domain.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sankey/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/sankey/_hoverlabel.py index a864629730..7ff1cc66fc 100644 --- a/packages/python/plotly/plotly/graph_objs/sankey/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/sankey/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sankey/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/sankey/_legendgrouptitle.py index 89d2989eb9..fc809836e9 100644 --- a/packages/python/plotly/plotly/graph_objs/sankey/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/sankey/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sankey/_link.py b/packages/python/plotly/plotly/graph_objs/sankey/_link.py index d742541092..dcfae98cfc 100644 --- a/packages/python/plotly/plotly/graph_objs/sankey/_link.py +++ b/packages/python/plotly/plotly/graph_objs/sankey/_link.py @@ -621,28 +621,28 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - arrowlen=None, - color=None, + arrowlen: int|float=None, + color: str=None, colorscales=None, colorscaledefaults=None, - colorsrc=None, - customdata=None, - customdatasrc=None, - hovercolor=None, - hovercolorsrc=None, - hoverinfo=None, + colorsrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + hovercolor: str=None, + hovercolorsrc: str=None, + hoverinfo: Any=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - label=None, - labelsrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + label: numpy.ndarray=None, + labelsrc: str=None, line=None, - source=None, - sourcesrc=None, - target=None, - targetsrc=None, - value=None, - valuesrc=None, + source: numpy.ndarray=None, + sourcesrc: str=None, + target: numpy.ndarray=None, + targetsrc: str=None, + value: numpy.ndarray=None, + valuesrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sankey/_node.py b/packages/python/plotly/plotly/graph_objs/sankey/_node.py index 9a2a2b2c33..5df5c10a4d 100644 --- a/packages/python/plotly/plotly/graph_objs/sankey/_node.py +++ b/packages/python/plotly/plotly/graph_objs/sankey/_node.py @@ -537,25 +537,25 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - color=None, - colorsrc=None, - customdata=None, - customdatasrc=None, - groups=None, - hoverinfo=None, + align: Any=None, + color: str=None, + colorsrc: str=None, + customdata: numpy.ndarray=None, + customdatasrc: str=None, + groups: list=None, + hoverinfo: Any=None, hoverlabel=None, - hovertemplate=None, - hovertemplatesrc=None, - label=None, - labelsrc=None, + hovertemplate: str=None, + hovertemplatesrc: str=None, + label: numpy.ndarray=None, + labelsrc: str=None, line=None, - pad=None, - thickness=None, - x=None, - xsrc=None, - y=None, - ysrc=None, + pad: int|float=None, + thickness: int|float=None, + x: numpy.ndarray=None, + xsrc: str=None, + y: numpy.ndarray=None, + ysrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sankey/_stream.py b/packages/python/plotly/plotly/graph_objs/sankey/_stream.py index 4cdf95116b..3e84bfd274 100644 --- a/packages/python/plotly/plotly/graph_objs/sankey/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/sankey/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sankey/_textfont.py b/packages/python/plotly/plotly/graph_objs/sankey/_textfont.py index acbf9d9079..28b27411f5 100644 --- a/packages/python/plotly/plotly/graph_objs/sankey/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/sankey/_textfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sankey/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/sankey/hoverlabel/_font.py index 9cfb63b4c6..df5a38f341 100644 --- a/packages/python/plotly/plotly/graph_objs/sankey/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/sankey/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sankey/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/sankey/legendgrouptitle/_font.py index 1f74286e2e..9602ebc97c 100644 --- a/packages/python/plotly/plotly/graph_objs/sankey/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/sankey/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sankey/link/_colorscale.py b/packages/python/plotly/plotly/graph_objs/sankey/link/_colorscale.py index 0b4742603c..dfadd462f7 100644 --- a/packages/python/plotly/plotly/graph_objs/sankey/link/_colorscale.py +++ b/packages/python/plotly/plotly/graph_objs/sankey/link/_colorscale.py @@ -228,12 +228,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, + cmin: int|float=None, + colorscale: str=None, + label: str=None, + name: str=None, + templateitemname: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sankey/link/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/sankey/link/_hoverlabel.py index f268ca1b86..c9a1da845c 100644 --- a/packages/python/plotly/plotly/graph_objs/sankey/link/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/sankey/link/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sankey/link/_line.py b/packages/python/plotly/plotly/graph_objs/sankey/link/_line.py index 11206445cc..63e7fda80d 100644 --- a/packages/python/plotly/plotly/graph_objs/sankey/link/_line.py +++ b/packages/python/plotly/plotly/graph_objs/sankey/link/_line.py @@ -117,10 +117,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str=None, + colorsrc: str=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sankey/link/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/sankey/link/hoverlabel/_font.py index defb334ef8..6d7ea7b72e 100644 --- a/packages/python/plotly/plotly/graph_objs/sankey/link/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/sankey/link/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sankey/node/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/sankey/node/_hoverlabel.py index f7068b54cd..9766d9cf11 100644 --- a/packages/python/plotly/plotly/graph_objs/sankey/node/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/sankey/node/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sankey/node/_line.py b/packages/python/plotly/plotly/graph_objs/sankey/node/_line.py index 9aa3b95644..7592a78286 100644 --- a/packages/python/plotly/plotly/graph_objs/sankey/node/_line.py +++ b/packages/python/plotly/plotly/graph_objs/sankey/node/_line.py @@ -117,10 +117,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str=None, + colorsrc: str=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sankey/node/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/sankey/node/hoverlabel/_font.py index c9a0766a94..8dd87ba109 100644 --- a/packages/python/plotly/plotly/graph_objs/sankey/node/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/sankey/node/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_error_x.py b/packages/python/plotly/plotly/graph_objs/scatter/_error_x.py index 900ce12d04..caabec009c 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/_error_x.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/_error_x.py @@ -394,21 +394,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: numpy.ndarray=None, + arrayminus: numpy.ndarray=None, + arrayminussrc: str=None, + arraysrc: str=None, + color: str=None, + copy_ystyle: bool=None, + symmetric: bool=None, + thickness: int|float=None, + traceref: int=None, + tracerefminus: int=None, + type: Any=None, + value: int|float=None, + valueminus: int|float=None, + visible: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_error_y.py b/packages/python/plotly/plotly/graph_objs/scatter/_error_y.py index 2fc957e357..d87a13afd1 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/_error_y.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/_error_y.py @@ -374,20 +374,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: numpy.ndarray=None, + arrayminus: numpy.ndarray=None, + arrayminussrc: str=None, + arraysrc: str=None, + color: str=None, + symmetric: bool=None, + thickness: int|float=None, + traceref: int=None, + tracerefminus: int=None, + type: Any=None, + value: int|float=None, + valueminus: int|float=None, + visible: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_fillgradient.py b/packages/python/plotly/plotly/graph_objs/scatter/_fillgradient.py index af2aeba254..3e90d94fed 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/_fillgradient.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/_fillgradient.py @@ -166,10 +166,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - colorscale=None, - start=None, - stop=None, - type=None, + colorscale: str=None, + start: int|float=None, + stop: int|float=None, + type: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_fillpattern.py b/packages/python/plotly/plotly/graph_objs/scatter/_fillpattern.py index 91c34c5436..90eb5f732a 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/_fillpattern.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/_fillpattern.py @@ -334,18 +334,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, + bgcolorsrc: str=None, + fgcolor: str=None, + fgcolorsrc: str=None, + fgopacity: int|float=None, + fillmode: Any=None, + shape: Any=None, + shapesrc: str=None, + size: int|float=None, + sizesrc: str=None, + solidity: int|float=None, + soliditysrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/scatter/_hoverlabel.py index 87e61af033..cb7f1a689a 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/scatter/_legendgrouptitle.py index 412bd6a3a3..7e2a1e92f5 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_line.py b/packages/python/plotly/plotly/graph_objs/scatter/_line.py index d8e17beadd..90162f85cc 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/_line.py @@ -233,14 +233,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, + backoffsrc: str=None, + color: str=None, + dash: str=None, + shape: Any=None, + simplify: bool=None, + smoothing: int|float=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_marker.py b/packages/python/plotly/plotly/graph_objs/scatter/_marker.py index 4c82c336b3..867e1ca3d9 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/_marker.py @@ -927,35 +927,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, + angle: int|float=None, + angleref: Any=None, + anglesrc: str=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, + colorscale: str=None, + colorsrc: str=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, + maxdisplayed: int|float=None, + opacity: int|float=None, + opacitysrc: str=None, + reversescale: bool=None, + showscale: bool=None, + size: int|float=None, + sizemin: int|float=None, + sizemode: Any=None, + sizeref: int|float=None, + sizesrc: str=None, + standoff: int|float=None, + standoffsrc: str=None, + symbol: Any=None, + symbolsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_stream.py b/packages/python/plotly/plotly/graph_objs/scatter/_stream.py index ea36071825..7b0b842de0 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_textfont.py b/packages/python/plotly/plotly/graph_objs/scatter/_textfont.py index 42fa36cca0..8db66c1a4d 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/_textfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/scatter/hoverlabel/_font.py index f9ff1e263d..44b5f553b9 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/scatter/legendgrouptitle/_font.py index 9dc0ca22f6..dbe7e68ce9 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/scatter/marker/_colorbar.py index d7b119ac64..4136f84bd1 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/_gradient.py b/packages/python/plotly/plotly/graph_objs/scatter/marker/_gradient.py index 338dea100c..34c787fe61 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/marker/_gradient.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/marker/_gradient.py @@ -120,10 +120,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - type=None, - typesrc=None, + color: str=None, + colorsrc: str=None, + type: Any=None, + typesrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/_line.py b/packages/python/plotly/plotly/graph_objs/scatter/marker/_line.py index 039bb0a836..a69ee1fbeb 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/marker/_line.py @@ -417,18 +417,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, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, + colorscale: str=None, + colorsrc: str=None, + reversescale: bool=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_tickfont.py index 5bc44db307..6f041a66e1 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_tickformatstop.py index 2c56b52d2d..14a02b5503 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_title.py index 8ce1c7c01f..f07319edf8 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/title/_font.py index e2dd4752af..890e7b7533 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/scatter/selected/_marker.py index 56d97d9277..6a8cfc0797 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/selected/_marker.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/selected/_textfont.py b/packages/python/plotly/plotly/graph_objs/scatter/selected/_textfont.py index eba0163922..e7be0b7bd2 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/selected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/selected/_textfont.py @@ -46,7 +46,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/scatter/unselected/_marker.py index 4e58631629..e9838e606f 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/unselected/_marker.py @@ -96,9 +96,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter/unselected/_textfont.py b/packages/python/plotly/plotly/graph_objs/scatter/unselected/_textfont.py index 58046827b1..f41c847efe 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter/unselected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatter/unselected/_textfont.py @@ -48,7 +48,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_error_x.py b/packages/python/plotly/plotly/graph_objs/scatter3d/_error_x.py index d2f6754173..7f0d9b01f2 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/_error_x.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/_error_x.py @@ -394,21 +394,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: numpy.ndarray=None, + arrayminus: numpy.ndarray=None, + arrayminussrc: str=None, + arraysrc: str=None, + color: str=None, + copy_zstyle: bool=None, + symmetric: bool=None, + thickness: int|float=None, + traceref: int=None, + tracerefminus: int=None, + type: Any=None, + value: int|float=None, + valueminus: int|float=None, + visible: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_error_y.py b/packages/python/plotly/plotly/graph_objs/scatter3d/_error_y.py index 139951afdf..9809a79e3b 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/_error_y.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/_error_y.py @@ -394,21 +394,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: numpy.ndarray=None, + arrayminus: numpy.ndarray=None, + arrayminussrc: str=None, + arraysrc: str=None, + color: str=None, + copy_zstyle: bool=None, + symmetric: bool=None, + thickness: int|float=None, + traceref: int=None, + tracerefminus: int=None, + type: Any=None, + value: int|float=None, + valueminus: int|float=None, + visible: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_error_z.py b/packages/python/plotly/plotly/graph_objs/scatter3d/_error_z.py index 6a436d14f4..755808f964 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/_error_z.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/_error_z.py @@ -374,20 +374,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: numpy.ndarray=None, + arrayminus: numpy.ndarray=None, + arrayminussrc: str=None, + arraysrc: str=None, + color: str=None, + symmetric: bool=None, + thickness: int|float=None, + traceref: int=None, + tracerefminus: int=None, + type: Any=None, + value: int|float=None, + valueminus: int|float=None, + visible: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/scatter3d/_hoverlabel.py index 69489f6e54..717ebd9209 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/scatter3d/_legendgrouptitle.py index adb2d49f2c..782d20fc6a 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_line.py b/packages/python/plotly/plotly/graph_objs/scatter3d/_line.py index a116d48dfb..fc51de724a 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/_line.py @@ -459,20 +459,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, - dash=None, - reversescale=None, - showscale=None, - width=None, + colorscale: str=None, + colorsrc: str=None, + dash: Any=None, + reversescale: bool=None, + showscale: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_marker.py b/packages/python/plotly/plotly/graph_objs/scatter3d/_marker.py index 1abfdc7533..e135836fb4 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/_marker.py @@ -642,27 +642,27 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - color=None, - coloraxis=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, + colorscale: str=None, + colorsrc: str=None, line=None, - opacity=None, - reversescale=None, - showscale=None, - size=None, - sizemin=None, - sizemode=None, - sizeref=None, - sizesrc=None, - symbol=None, - symbolsrc=None, + opacity: int|float=None, + reversescale: bool=None, + showscale: bool=None, + size: int|float=None, + sizemin: int|float=None, + sizemode: Any=None, + sizeref: int|float=None, + sizesrc: str=None, + symbol: Any=None, + symbolsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_stream.py b/packages/python/plotly/plotly/graph_objs/scatter3d/_stream.py index 98c5fe192b..2df1f48efc 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_textfont.py b/packages/python/plotly/plotly/graph_objs/scatter3d/_textfont.py index 11a9fa07b2..e70d6843af 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/_textfont.py @@ -311,18 +311,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/scatter3d/hoverlabel/_font.py index 7426d4911e..5c1dacfe88 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/scatter3d/legendgrouptitle/_font.py index 49151f8414..b4da937436 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/line/_colorbar.py b/packages/python/plotly/plotly/graph_objs/scatter3d/line/_colorbar.py index 64100ac502..37466d9747 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/line/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/line/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_tickfont.py index 6598949f64..f6bf459db5 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_tickformatstop.py index 23d4bb670d..e531913f8b 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_title.py index 50b625a2eb..7829d7aa73 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/title/_font.py index 0c2dafbf44..6aabb45cf5 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/scatter3d/marker/_colorbar.py index c1b7624da2..6e866be35f 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/_line.py b/packages/python/plotly/plotly/graph_objs/scatter3d/marker/_line.py index 81e0e94187..ae3c8f486e 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/marker/_line.py @@ -393,17 +393,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, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, + colorscale: str=None, + colorsrc: str=None, + reversescale: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_tickfont.py index bd5a6353c8..f44d6949e2 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_tickformatstop.py index 7b874e65ed..b20d4b08b7 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_title.py index 8591ba8a08..762ebd01e5 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/title/_font.py index 8a13836534..8164b903a3 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/projection/_x.py b/packages/python/plotly/plotly/graph_objs/scatter3d/projection/_x.py index 8318aa0594..be5cc275e5 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/projection/_x.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/projection/_x.py @@ -89,9 +89,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, - scale=None, - show=None, + opacity: int|float=None, + scale: int|float=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/projection/_y.py b/packages/python/plotly/plotly/graph_objs/scatter3d/projection/_y.py index fbb2bc6532..e83c35d07e 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/projection/_y.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/projection/_y.py @@ -89,9 +89,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, - scale=None, - show=None, + opacity: int|float=None, + scale: int|float=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/projection/_z.py b/packages/python/plotly/plotly/graph_objs/scatter3d/projection/_z.py index 8b094c7b8e..6a61bcbc12 100644 --- a/packages/python/plotly/plotly/graph_objs/scatter3d/projection/_z.py +++ b/packages/python/plotly/plotly/graph_objs/scatter3d/projection/_z.py @@ -89,9 +89,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, - scale=None, - show=None, + opacity: int|float=None, + scale: int|float=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/_hoverlabel.py index a34a0d8c64..5b005d91b7 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/_legendgrouptitle.py index 4b50c79d8c..f45d5e0f5e 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/_line.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/_line.py index 3d08bcc18f..48f639150c 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/_line.py @@ -205,13 +205,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, + backoffsrc: str=None, + color: str=None, + dash: str=None, + shape: Any=None, + smoothing: int|float=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/_marker.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/_marker.py index 0d3d72734b..6737238f85 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/_marker.py @@ -927,35 +927,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, + angle: int|float=None, + angleref: Any=None, + anglesrc: str=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, + colorscale: str=None, + colorsrc: str=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, + maxdisplayed: int|float=None, + opacity: int|float=None, + opacitysrc: str=None, + reversescale: bool=None, + showscale: bool=None, + size: int|float=None, + sizemin: int|float=None, + sizemode: Any=None, + sizeref: int|float=None, + sizesrc: str=None, + standoff: int|float=None, + standoffsrc: str=None, + symbol: Any=None, + symbolsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/_stream.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/_stream.py index 8e90ceb4aa..bb6055c004 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/_textfont.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/_textfont.py index a43e3706b7..72489f108a 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/_textfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/hoverlabel/_font.py index 6ce608e6c3..1f28fdffa9 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/legendgrouptitle/_font.py index 90f1403cea..cc1700a54f 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_colorbar.py index ded677903a..7f91ac8943 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_gradient.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_gradient.py index c534277439..105807e71d 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_gradient.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_gradient.py @@ -120,10 +120,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - type=None, - typesrc=None, + color: str=None, + colorsrc: str=None, + type: Any=None, + typesrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_line.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_line.py index ed98635e30..fb02ef4ada 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_line.py @@ -417,18 +417,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, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, + colorscale: str=None, + colorsrc: str=None, + reversescale: bool=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_tickfont.py index 6526b036cf..679b9bdac8 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_tickformatstop.py index aafa6e6859..230a9e5735 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_title.py index 6c93a4d5db..eae59f29a2 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/title/_font.py index 07a8d93b91..d9e99822a7 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/selected/_marker.py index 7ccaafd1c3..acb56788c4 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/selected/_marker.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/selected/_textfont.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/selected/_textfont.py index 385a873ae9..af74b49786 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/selected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/selected/_textfont.py @@ -46,7 +46,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/unselected/_marker.py index c36908cb4b..16494ef8f9 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/unselected/_marker.py @@ -96,9 +96,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/unselected/_textfont.py b/packages/python/plotly/plotly/graph_objs/scattercarpet/unselected/_textfont.py index 48b15dd097..b63e02cb73 100644 --- a/packages/python/plotly/plotly/graph_objs/scattercarpet/unselected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattercarpet/unselected/_textfont.py @@ -48,7 +48,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/scattergeo/_hoverlabel.py index 1434b52326..b8c471df52 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/scattergeo/_legendgrouptitle.py index 9c565e6d4d..8f6f1e05cb 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/_line.py b/packages/python/plotly/plotly/graph_objs/scattergeo/_line.py index a16267abc1..7f467743db 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/_line.py @@ -99,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str=None, + dash: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/_marker.py b/packages/python/plotly/plotly/graph_objs/scattergeo/_marker.py index c929447497..02d534b9d0 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/_marker.py @@ -906,34 +906,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, + angle: int|float=None, + angleref: Any=None, + anglesrc: str=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, + colorscale: str=None, + colorsrc: str=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, + opacity: int|float=None, + opacitysrc: str=None, + reversescale: bool=None, + showscale: bool=None, + size: int|float=None, + sizemin: int|float=None, + sizemode: Any=None, + sizeref: int|float=None, + sizesrc: str=None, + standoff: int|float=None, + standoffsrc: str=None, + symbol: Any=None, + symbolsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/_stream.py b/packages/python/plotly/plotly/graph_objs/scattergeo/_stream.py index ae892c9b1a..ee437ab1a4 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/_textfont.py b/packages/python/plotly/plotly/graph_objs/scattergeo/_textfont.py index 3e381f7b1e..9139cd5ccb 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/_textfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/scattergeo/hoverlabel/_font.py index 707927f737..4836802e1b 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/scattergeo/legendgrouptitle/_font.py index 5b49a7c278..662a3930aa 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/scattergeo/marker/_colorbar.py index 4199815f81..eeef6aea2c 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/_gradient.py b/packages/python/plotly/plotly/graph_objs/scattergeo/marker/_gradient.py index 06281a7c18..01b0ef5cab 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/_gradient.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/marker/_gradient.py @@ -120,10 +120,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - type=None, - typesrc=None, + color: str=None, + colorsrc: str=None, + type: Any=None, + typesrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/_line.py b/packages/python/plotly/plotly/graph_objs/scattergeo/marker/_line.py index c4f7f6331b..f66402e9c3 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/marker/_line.py @@ -417,18 +417,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, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, + colorscale: str=None, + colorsrc: str=None, + reversescale: bool=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_tickfont.py index 011aaa0058..8b5eacab75 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_tickformatstop.py index 563ec00d0e..6312e748b7 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_title.py index 1d5511237b..6a480e7795 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/title/_font.py index 89f88c5a4d..3942bc3ae0 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/scattergeo/selected/_marker.py index 2f217a3014..6351e6f4f7 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/selected/_marker.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/selected/_textfont.py b/packages/python/plotly/plotly/graph_objs/scattergeo/selected/_textfont.py index c707b22e58..635856b99f 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/selected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/selected/_textfont.py @@ -46,7 +46,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/scattergeo/unselected/_marker.py index a5bb49c004..7b5eedb9d4 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/unselected/_marker.py @@ -96,9 +96,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/unselected/_textfont.py b/packages/python/plotly/plotly/graph_objs/scattergeo/unselected/_textfont.py index 44c8a78a90..a5e120b919 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergeo/unselected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattergeo/unselected/_textfont.py @@ -48,7 +48,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_error_x.py b/packages/python/plotly/plotly/graph_objs/scattergl/_error_x.py index d6c30f0ea5..c13e62e7d7 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/_error_x.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/_error_x.py @@ -394,21 +394,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: numpy.ndarray=None, + arrayminus: numpy.ndarray=None, + arrayminussrc: str=None, + arraysrc: str=None, + color: str=None, + copy_ystyle: bool=None, + symmetric: bool=None, + thickness: int|float=None, + traceref: int=None, + tracerefminus: int=None, + type: Any=None, + value: int|float=None, + valueminus: int|float=None, + visible: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_error_y.py b/packages/python/plotly/plotly/graph_objs/scattergl/_error_y.py index 9bab67ed98..bb28b83d60 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/_error_y.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/_error_y.py @@ -374,20 +374,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: numpy.ndarray=None, + arrayminus: numpy.ndarray=None, + arrayminussrc: str=None, + arraysrc: str=None, + color: str=None, + symmetric: bool=None, + thickness: int|float=None, + traceref: int=None, + tracerefminus: int=None, + type: Any=None, + value: int|float=None, + valueminus: int|float=None, + visible: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/scattergl/_hoverlabel.py index 5c2a47c46d..79d84b8da3 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/scattergl/_legendgrouptitle.py index 0c51082146..935158742f 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_line.py b/packages/python/plotly/plotly/graph_objs/scattergl/_line.py index a341dc2860..b317e489b9 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/_line.py @@ -117,10 +117,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - shape=None, - width=None, + color: str=None, + dash: Any=None, + shape: Any=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_marker.py b/packages/python/plotly/plotly/graph_objs/scattergl/_marker.py index a68cb8628e..58e8aca0c6 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/_marker.py @@ -799,30 +799,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, + angle: int|float=None, + anglesrc: str=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, + colorscale: str=None, + colorsrc: str=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, + opacity: int|float=None, + opacitysrc: str=None, + reversescale: bool=None, + showscale: bool=None, + size: int|float=None, + sizemin: int|float=None, + sizemode: Any=None, + sizeref: int|float=None, + sizesrc: str=None, + symbol: Any=None, + symbolsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_stream.py b/packages/python/plotly/plotly/graph_objs/scattergl/_stream.py index 7b6d8fd00d..4ca7a42f2e 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_textfont.py b/packages/python/plotly/plotly/graph_objs/scattergl/_textfont.py index d54c350ef6..767919cfd0 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/_textfont.py @@ -310,18 +310,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: Any=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/scattergl/hoverlabel/_font.py index c13bd76be9..e44902b2d7 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/scattergl/legendgrouptitle/_font.py index 6eea10946f..82c1daae70 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/scattergl/marker/_colorbar.py index 19a534620f..9043e8fea4 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/marker/_line.py b/packages/python/plotly/plotly/graph_objs/scattergl/marker/_line.py index ddbfa6cdf4..ae6855f759 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/marker/_line.py @@ -417,18 +417,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, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, + colorscale: str=None, + colorsrc: str=None, + reversescale: bool=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_tickfont.py index 62e7d31bac..a1ae50ecaa 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_tickformatstop.py index 24714cfde4..6d4fcd2299 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_title.py index 2cdcfdb2b5..dc4c742d44 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/title/_font.py index f23f2fcf92..54ae632bac 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/scattergl/selected/_marker.py index 50d92fcc1f..9ba769fb2a 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/selected/_marker.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/selected/_textfont.py b/packages/python/plotly/plotly/graph_objs/scattergl/selected/_textfont.py index 8a2a592191..61649e2278 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/selected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/selected/_textfont.py @@ -46,7 +46,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/scattergl/unselected/_marker.py index 10abd69a62..35bcad3713 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/unselected/_marker.py @@ -96,9 +96,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/unselected/_textfont.py b/packages/python/plotly/plotly/graph_objs/scattergl/unselected/_textfont.py index d5e02cf1b0..be2532e3f1 100644 --- a/packages/python/plotly/plotly/graph_objs/scattergl/unselected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattergl/unselected/_textfont.py @@ -48,7 +48,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/_cluster.py b/packages/python/plotly/plotly/graph_objs/scattermap/_cluster.py index 9b6bbafe63..48014a1407 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermap/_cluster.py +++ b/packages/python/plotly/plotly/graph_objs/scattermap/_cluster.py @@ -263,16 +263,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, + colorsrc: str=None, + enabled: bool=None, + maxzoom: int|float=None, + opacity: int|float=None, + opacitysrc: str=None, + size: int|float=None, + sizesrc: str=None, + step: int|float=None, + stepsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/scattermap/_hoverlabel.py index 87e8bb98cd..e8ddfed973 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermap/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/scattermap/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/scattermap/_legendgrouptitle.py index 42c0d4ec81..f8381aabdf 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermap/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/scattermap/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/_line.py b/packages/python/plotly/plotly/graph_objs/scattermap/_line.py index ca0e5a5438..e48b504baf 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermap/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scattermap/_line.py @@ -68,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/_marker.py b/packages/python/plotly/plotly/graph_objs/scattermap/_marker.py index c083db4c11..6289a827d4 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermap/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattermap/_marker.py @@ -712,30 +712,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, + allowoverlap: bool=None, + angle: int|float=None, + anglesrc: str=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=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, + colorscale: str=None, + colorsrc: str=None, + opacity: int|float=None, + opacitysrc: str=None, + reversescale: bool=None, + showscale: bool=None, + size: int|float=None, + sizemin: int|float=None, + sizemode: Any=None, + sizeref: int|float=None, + sizesrc: str=None, + symbol: str=None, + symbolsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/_stream.py b/packages/python/plotly/plotly/graph_objs/scattermap/_stream.py index 939ae4f59a..be0ad0cd8e 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermap/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/scattermap/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/_textfont.py b/packages/python/plotly/plotly/graph_objs/scattermap/_textfont.py index 294a95c17b..4d0af2fe78 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermap/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattermap/_textfont.py @@ -144,11 +144,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - size=None, - style=None, - weight=None, + color: str=None, + family: str=None, + size: int|float=None, + style: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/scattermap/hoverlabel/_font.py index 532c2c7202..2c48fcaff7 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermap/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattermap/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/scattermap/legendgrouptitle/_font.py index e4f5b0d822..19e2c2d01c 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermap/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattermap/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/scattermap/marker/_colorbar.py index 02e6b11d1b..3853ea2830 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermap/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/scattermap/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_tickfont.py index cf4ab82edc..c2054321ca 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_tickformatstop.py index 73a55dc0ae..e2aa7f1621 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_title.py index 3a30a95fc4..4388eff790 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/title/_font.py index 42d8fea932..87860ad5b3 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/scattermap/selected/_marker.py index 48f073d27b..6c1747ac81 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermap/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattermap/selected/_marker.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/scattermap/unselected/_marker.py index 3125c7f91d..ee2a442fe9 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermap/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattermap/unselected/_marker.py @@ -96,9 +96,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/_cluster.py b/packages/python/plotly/plotly/graph_objs/scattermapbox/_cluster.py index 3dcd0d548d..173b779e00 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermapbox/_cluster.py +++ b/packages/python/plotly/plotly/graph_objs/scattermapbox/_cluster.py @@ -263,16 +263,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, + colorsrc: str=None, + enabled: bool=None, + maxzoom: int|float=None, + opacity: int|float=None, + opacitysrc: str=None, + size: int|float=None, + sizesrc: str=None, + step: int|float=None, + stepsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/scattermapbox/_hoverlabel.py index 2339bd5351..9ad89fc3a0 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermapbox/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/scattermapbox/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/scattermapbox/_legendgrouptitle.py index 9064f2c726..eac872050b 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermapbox/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/scattermapbox/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/_line.py b/packages/python/plotly/plotly/graph_objs/scattermapbox/_line.py index 0ed11d7d08..f3f237f054 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermapbox/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scattermapbox/_line.py @@ -68,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/_marker.py b/packages/python/plotly/plotly/graph_objs/scattermapbox/_marker.py index 4bc02abc31..1f50a28382 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermapbox/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattermapbox/_marker.py @@ -712,30 +712,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, + allowoverlap: bool=None, + angle: int|float=None, + anglesrc: str=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=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, + colorscale: str=None, + colorsrc: str=None, + opacity: int|float=None, + opacitysrc: str=None, + reversescale: bool=None, + showscale: bool=None, + size: int|float=None, + sizemin: int|float=None, + sizemode: Any=None, + sizeref: int|float=None, + sizesrc: str=None, + symbol: str=None, + symbolsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/_stream.py b/packages/python/plotly/plotly/graph_objs/scattermapbox/_stream.py index 75c158fab9..8217a821ae 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermapbox/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/scattermapbox/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/_textfont.py b/packages/python/plotly/plotly/graph_objs/scattermapbox/_textfont.py index d5f20abb93..aec9017bbb 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermapbox/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattermapbox/_textfont.py @@ -144,11 +144,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - family=None, - size=None, - style=None, - weight=None, + color: str=None, + family: str=None, + size: int|float=None, + style: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/scattermapbox/hoverlabel/_font.py index 0e6d09fd64..304b225f26 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermapbox/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattermapbox/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/scattermapbox/legendgrouptitle/_font.py index 00737863cb..4865e1a5af 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermapbox/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattermapbox/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/_colorbar.py index ddca889705..8569173c47 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_tickfont.py index b806bad2e9..2367befc51 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_tickformatstop.py index fa2cb7aedb..8d13319350 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_title.py index 5a0aee581b..33d7decc6f 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/title/_font.py index 751ed75bc6..3500c93ebb 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/scattermapbox/selected/_marker.py index 8b8e50a86e..412c819019 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermapbox/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattermapbox/selected/_marker.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/scattermapbox/unselected/_marker.py index a8c00e5d56..41e67b318c 100644 --- a/packages/python/plotly/plotly/graph_objs/scattermapbox/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattermapbox/unselected/_marker.py @@ -96,9 +96,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/_hoverlabel.py index 85791a1789..847422d9db 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/_legendgrouptitle.py index 5727ec0be4..7e30791493 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/_line.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/_line.py index ec2ee318fa..2764c1d910 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/_line.py @@ -205,13 +205,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, + backoffsrc: str=None, + color: str=None, + dash: str=None, + shape: Any=None, + smoothing: int|float=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/_marker.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/_marker.py index e00d7f7b48..e53dbc4bcb 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/_marker.py @@ -927,35 +927,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, + angle: int|float=None, + angleref: Any=None, + anglesrc: str=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, + colorscale: str=None, + colorsrc: str=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, + maxdisplayed: int|float=None, + opacity: int|float=None, + opacitysrc: str=None, + reversescale: bool=None, + showscale: bool=None, + size: int|float=None, + sizemin: int|float=None, + sizemode: Any=None, + sizeref: int|float=None, + sizesrc: str=None, + standoff: int|float=None, + standoffsrc: str=None, + symbol: Any=None, + symbolsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/_stream.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/_stream.py index 01cc093317..1aed065b4b 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/_textfont.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/_textfont.py index 889be37466..b31f45be5e 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/_textfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/hoverlabel/_font.py index c3db40a425..164c221bea 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/legendgrouptitle/_font.py index 4182032c29..f082008ce3 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_colorbar.py index d7c5836287..39b3547b90 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_gradient.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_gradient.py index e72f59a14e..12b0422403 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_gradient.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_gradient.py @@ -120,10 +120,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - type=None, - typesrc=None, + color: str=None, + colorsrc: str=None, + type: Any=None, + typesrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_line.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_line.py index 6806f850a0..f3cfbf386a 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_line.py @@ -417,18 +417,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, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, + colorscale: str=None, + colorsrc: str=None, + reversescale: bool=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_tickfont.py index 6228e849e1..ca9f2d1035 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_tickformatstop.py index 9ff3c53483..cce955424e 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_title.py index 932bc58717..6654fa9b6e 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/title/_font.py index 2db2ac7289..1b77a8e2b6 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/selected/_marker.py index 3ac2dffb1c..769874c97b 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/selected/_marker.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/selected/_textfont.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/selected/_textfont.py index 446cc7b5be..e06ca814e6 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/selected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/selected/_textfont.py @@ -46,7 +46,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/unselected/_marker.py index 6edf6d2596..552bbec3f2 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/unselected/_marker.py @@ -96,9 +96,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/unselected/_textfont.py b/packages/python/plotly/plotly/graph_objs/scatterpolar/unselected/_textfont.py index e1c0510503..7f53263902 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolar/unselected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolar/unselected/_textfont.py @@ -48,7 +48,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/_hoverlabel.py index f28917aa3f..5a97ed648e 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/_legendgrouptitle.py index 3d2b198093..d5ed8d4add 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_line.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/_line.py index f928d48f08..5e8027ec8b 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/_line.py @@ -92,9 +92,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str=None, + dash: Any=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_marker.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/_marker.py index 858adfe2e9..610f7de70e 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/_marker.py @@ -799,30 +799,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, + angle: int|float=None, + anglesrc: str=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, + colorscale: str=None, + colorsrc: str=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, + opacity: int|float=None, + opacitysrc: str=None, + reversescale: bool=None, + showscale: bool=None, + size: int|float=None, + sizemin: int|float=None, + sizemode: Any=None, + sizeref: int|float=None, + sizesrc: str=None, + symbol: Any=None, + symbolsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_stream.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/_stream.py index a126e595ef..b2e9a45aa5 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_textfont.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/_textfont.py index ad23f1cc5e..17e01b7d23 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/_textfont.py @@ -310,18 +310,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: Any=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/hoverlabel/_font.py index b85be29f53..38f053702c 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/legendgrouptitle/_font.py index 4e28fe5a27..b3288296d4 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/_colorbar.py index 514fe50fb2..6b57127179 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/_line.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/_line.py index 592e3f8f71..1d208b0b95 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/_line.py @@ -417,18 +417,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, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, + colorscale: str=None, + colorsrc: str=None, + reversescale: bool=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickfont.py index b71cc6c796..76dcff2204 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickformatstop.py index 51a7fa3df8..59c5fb7000 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_title.py index b1aa8c6ff5..382476cdeb 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/title/_font.py index 989eda2e2e..a0cb58cd81 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/selected/_marker.py index 02333170f8..992ba67521 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/selected/_marker.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/selected/_textfont.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/selected/_textfont.py index 2e76202610..6ac12cc188 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/selected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/selected/_textfont.py @@ -46,7 +46,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/unselected/_marker.py index 22ff3d77d4..4385972bf4 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/unselected/_marker.py @@ -96,9 +96,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/unselected/_textfont.py b/packages/python/plotly/plotly/graph_objs/scatterpolargl/unselected/_textfont.py index 2dd6123b1e..2caa4d76b0 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterpolargl/unselected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatterpolargl/unselected/_textfont.py @@ -48,7 +48,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/scattersmith/_hoverlabel.py index 2500c9ddac..cfd872a748 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/scattersmith/_legendgrouptitle.py index ae222304b1..b436752c80 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/_line.py b/packages/python/plotly/plotly/graph_objs/scattersmith/_line.py index 4677fdc0f1..60e021cd7a 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/_line.py @@ -205,13 +205,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, + backoffsrc: str=None, + color: str=None, + dash: str=None, + shape: Any=None, + smoothing: int|float=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/_marker.py b/packages/python/plotly/plotly/graph_objs/scattersmith/_marker.py index 093d8b5c94..f5aa0f38be 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/_marker.py @@ -927,35 +927,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, + angle: int|float=None, + angleref: Any=None, + anglesrc: str=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, + colorscale: str=None, + colorsrc: str=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, + maxdisplayed: int|float=None, + opacity: int|float=None, + opacitysrc: str=None, + reversescale: bool=None, + showscale: bool=None, + size: int|float=None, + sizemin: int|float=None, + sizemode: Any=None, + sizeref: int|float=None, + sizesrc: str=None, + standoff: int|float=None, + standoffsrc: str=None, + symbol: Any=None, + symbolsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/_stream.py b/packages/python/plotly/plotly/graph_objs/scattersmith/_stream.py index 4d75c6821f..289602487c 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/_textfont.py b/packages/python/plotly/plotly/graph_objs/scattersmith/_textfont.py index 91f2b8b23e..a871be6743 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/_textfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/scattersmith/hoverlabel/_font.py index 1d0dda3555..6efc44d1d5 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/scattersmith/legendgrouptitle/_font.py index e302254600..f26aa3ee3b 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/scattersmith/marker/_colorbar.py index 02b39de7bf..0d17e6b4f2 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/_gradient.py b/packages/python/plotly/plotly/graph_objs/scattersmith/marker/_gradient.py index d8bd7999e5..4b03e9ca0f 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/_gradient.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/marker/_gradient.py @@ -120,10 +120,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - type=None, - typesrc=None, + color: str=None, + colorsrc: str=None, + type: Any=None, + typesrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/_line.py b/packages/python/plotly/plotly/graph_objs/scattersmith/marker/_line.py index 82278ccf4c..e3f0620c9d 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/marker/_line.py @@ -417,18 +417,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, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, + colorscale: str=None, + colorsrc: str=None, + reversescale: bool=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_tickfont.py index 42f4325d87..36f459a303 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_tickformatstop.py index abd6943f5f..02accd02ac 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_title.py index b5e5632f7f..0cc95ef7b2 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/title/_font.py index 32ce2e9193..2c8921c4a6 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/scattersmith/selected/_marker.py index c48b3f85a9..2a5a959ec8 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/selected/_marker.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/selected/_textfont.py b/packages/python/plotly/plotly/graph_objs/scattersmith/selected/_textfont.py index d68a9e0540..fa88ab3c1e 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/selected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/selected/_textfont.py @@ -46,7 +46,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/scattersmith/unselected/_marker.py index 34b516a9be..f7197d201d 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/unselected/_marker.py @@ -96,9 +96,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/unselected/_textfont.py b/packages/python/plotly/plotly/graph_objs/scattersmith/unselected/_textfont.py index bb9816e7e3..120457b8ae 100644 --- a/packages/python/plotly/plotly/graph_objs/scattersmith/unselected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scattersmith/unselected/_textfont.py @@ -48,7 +48,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/scatterternary/_hoverlabel.py index 007020419b..7a943159a3 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/scatterternary/_legendgrouptitle.py index 206f1225e3..dbac27afdb 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/_line.py b/packages/python/plotly/plotly/graph_objs/scatterternary/_line.py index 682afe6a54..6a61484900 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/_line.py @@ -205,13 +205,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, + backoffsrc: str=None, + color: str=None, + dash: str=None, + shape: Any=None, + smoothing: int|float=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/_marker.py b/packages/python/plotly/plotly/graph_objs/scatterternary/_marker.py index abe1cb74f2..13b1f7b1e3 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/_marker.py @@ -927,35 +927,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, + angle: int|float=None, + angleref: Any=None, + anglesrc: str=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, + colorscale: str=None, + colorsrc: str=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, + maxdisplayed: int|float=None, + opacity: int|float=None, + opacitysrc: str=None, + reversescale: bool=None, + showscale: bool=None, + size: int|float=None, + sizemin: int|float=None, + sizemode: Any=None, + sizeref: int|float=None, + sizesrc: str=None, + standoff: int|float=None, + standoffsrc: str=None, + symbol: Any=None, + symbolsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/_stream.py b/packages/python/plotly/plotly/graph_objs/scatterternary/_stream.py index fb99b3bf6e..7d9cafa355 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/_textfont.py b/packages/python/plotly/plotly/graph_objs/scatterternary/_textfont.py index a0a6f6f0f2..9448940d97 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/_textfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/scatterternary/hoverlabel/_font.py index 1912a5e188..d71ace4729 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/scatterternary/legendgrouptitle/_font.py index d0cc7d6c64..fca5b2f803 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/scatterternary/marker/_colorbar.py index 5eee99516b..11c0f699d7 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/_gradient.py b/packages/python/plotly/plotly/graph_objs/scatterternary/marker/_gradient.py index d8c063cab8..6e2c5d5bf0 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/_gradient.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/marker/_gradient.py @@ -120,10 +120,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - type=None, - typesrc=None, + color: str=None, + colorsrc: str=None, + type: Any=None, + typesrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/_line.py b/packages/python/plotly/plotly/graph_objs/scatterternary/marker/_line.py index d17a60cd89..b908dabaf1 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/marker/_line.py @@ -417,18 +417,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, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, + colorscale: str=None, + colorsrc: str=None, + reversescale: bool=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_tickfont.py index 357ecbf5e4..b0ce3abd25 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_tickformatstop.py index 2b4e274356..12a8107476 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_title.py index 9a72eab294..60be14b19b 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/title/_font.py index c2e2631fe6..6421bc12c4 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/scatterternary/selected/_marker.py index 25c60aa070..a147408a51 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/selected/_marker.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/selected/_textfont.py b/packages/python/plotly/plotly/graph_objs/scatterternary/selected/_textfont.py index 0801293700..194869c6ff 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/selected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/selected/_textfont.py @@ -46,7 +46,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/scatterternary/unselected/_marker.py index 265e03a909..748003c9cf 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/unselected/_marker.py @@ -96,9 +96,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/unselected/_textfont.py b/packages/python/plotly/plotly/graph_objs/scatterternary/unselected/_textfont.py index d1f69287c8..6201f52ddc 100644 --- a/packages/python/plotly/plotly/graph_objs/scatterternary/unselected/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/scatterternary/unselected/_textfont.py @@ -48,7 +48,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/_diagonal.py b/packages/python/plotly/plotly/graph_objs/splom/_diagonal.py index 7570373570..5a5d46ff83 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/_diagonal.py +++ b/packages/python/plotly/plotly/graph_objs/splom/_diagonal.py @@ -44,7 +44,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - visible=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/_dimension.py b/packages/python/plotly/plotly/graph_objs/splom/_dimension.py index f50537c2a4..be4e0f7471 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/_dimension.py +++ b/packages/python/plotly/plotly/graph_objs/splom/_dimension.py @@ -214,12 +214,12 @@ def _prop_descriptions(self): def __init__(self, arg=None, axis=None, - label=None, - name=None, - templateitemname=None, - values=None, - valuessrc=None, - visible=None, + label: str=None, + name: str=None, + templateitemname: str=None, + values: numpy.ndarray=None, + valuessrc: str=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/splom/_hoverlabel.py index 629a884699..3815cd340a 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/splom/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/splom/_legendgrouptitle.py index 060fa03906..9d7e8f53c9 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/splom/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/_marker.py b/packages/python/plotly/plotly/graph_objs/splom/_marker.py index 93e8a947cc..623cba8ddb 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/splom/_marker.py @@ -799,30 +799,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, + angle: int|float=None, + anglesrc: str=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, colorbar=None, - colorscale=None, - colorsrc=None, + colorscale: str=None, + colorsrc: str=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, + opacity: int|float=None, + opacitysrc: str=None, + reversescale: bool=None, + showscale: bool=None, + size: int|float=None, + sizemin: int|float=None, + sizemode: Any=None, + sizeref: int|float=None, + sizesrc: str=None, + symbol: Any=None, + symbolsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/_stream.py b/packages/python/plotly/plotly/graph_objs/splom/_stream.py index 7338aa4e49..e96e07b23e 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/splom/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/dimension/_axis.py b/packages/python/plotly/plotly/graph_objs/splom/dimension/_axis.py index b9f146cf17..188fc8226a 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/dimension/_axis.py +++ b/packages/python/plotly/plotly/graph_objs/splom/dimension/_axis.py @@ -74,8 +74,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - matches=None, - type=None, + matches: bool=None, + type: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/splom/hoverlabel/_font.py index bb1869170d..ea000e5176 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/splom/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/splom/legendgrouptitle/_font.py index f621e4f728..2f7c1841c9 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/splom/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/splom/marker/_colorbar.py index c81541a9d8..29f93aa1cb 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/splom/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/marker/_line.py b/packages/python/plotly/plotly/graph_objs/splom/marker/_line.py index 4a5c514197..855e88b834 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/splom/marker/_line.py @@ -417,18 +417,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, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + color: str=None, + coloraxis: str=None, + colorscale: str=None, + colorsrc: str=None, + reversescale: bool=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_tickfont.py index 52d598791c..22383b5403 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_tickformatstop.py index ee502f046c..a9e4ea8bdd 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_title.py index 8a5f4da008..9cc743e089 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/title/_font.py index dff66c6bf3..826239722b 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/splom/selected/_marker.py index ad0dce97d6..e3f42e8a7f 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/splom/selected/_marker.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/splom/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/splom/unselected/_marker.py index 470535680b..fbad36a4ed 100644 --- a/packages/python/plotly/plotly/graph_objs/splom/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/splom/unselected/_marker.py @@ -96,9 +96,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/_colorbar.py b/packages/python/plotly/plotly/graph_objs/streamtube/_colorbar.py index f3522ed983..1848dd651c 100644 --- a/packages/python/plotly/plotly/graph_objs/streamtube/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/streamtube/_colorbar.py @@ -1395,55 +1395,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/streamtube/_hoverlabel.py index 85fb35d07e..f7894bf0b0 100644 --- a/packages/python/plotly/plotly/graph_objs/streamtube/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/streamtube/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/streamtube/_legendgrouptitle.py index 930bca9ff0..0f38c2f67c 100644 --- a/packages/python/plotly/plotly/graph_objs/streamtube/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/streamtube/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/_lighting.py b/packages/python/plotly/plotly/graph_objs/streamtube/_lighting.py index 09ece54dc1..5281753bc7 100644 --- a/packages/python/plotly/plotly/graph_objs/streamtube/_lighting.py +++ b/packages/python/plotly/plotly/graph_objs/streamtube/_lighting.py @@ -191,13 +191,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, + diffuse: int|float=None, + facenormalsepsilon: int|float=None, + fresnel: int|float=None, + roughness: int|float=None, + specular: int|float=None, + vertexnormalsepsilon: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/_lightposition.py b/packages/python/plotly/plotly/graph_objs/streamtube/_lightposition.py index 11efaeee78..0114a1cc94 100644 --- a/packages/python/plotly/plotly/graph_objs/streamtube/_lightposition.py +++ b/packages/python/plotly/plotly/graph_objs/streamtube/_lightposition.py @@ -89,9 +89,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float=None, + y: int|float=None, + z: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/_starts.py b/packages/python/plotly/plotly/graph_objs/streamtube/_starts.py index 2810957371..36cb3681b1 100644 --- a/packages/python/plotly/plotly/graph_objs/streamtube/_starts.py +++ b/packages/python/plotly/plotly/graph_objs/streamtube/_starts.py @@ -161,12 +161,12 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - xsrc=None, - y=None, - ysrc=None, - z=None, - zsrc=None, + x: numpy.ndarray=None, + xsrc: str=None, + y: numpy.ndarray=None, + ysrc: str=None, + z: numpy.ndarray=None, + zsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/_stream.py b/packages/python/plotly/plotly/graph_objs/streamtube/_stream.py index c60df08b78..1709800a7c 100644 --- a/packages/python/plotly/plotly/graph_objs/streamtube/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/streamtube/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_tickfont.py index cc5243466b..e7b5a077e9 100644 --- a/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_tickformatstop.py index 7cca8cd87e..f1b8b2dc58 100644 --- a/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_title.py index a72650b7e0..2cf1560651 100644 --- a/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/title/_font.py index 774d699bce..047db62975 100644 --- a/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/streamtube/hoverlabel/_font.py index 1bf30f9d64..79a6cb3bf1 100644 --- a/packages/python/plotly/plotly/graph_objs/streamtube/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/streamtube/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/streamtube/legendgrouptitle/_font.py index 82cb45a7d2..a7256bf7a7 100644 --- a/packages/python/plotly/plotly/graph_objs/streamtube/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/streamtube/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_domain.py b/packages/python/plotly/plotly/graph_objs/sunburst/_domain.py index 93c414c991..f90365ad73 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/_domain.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/sunburst/_hoverlabel.py index 22e15d5013..ff00550241 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_insidetextfont.py b/packages/python/plotly/plotly/graph_objs/sunburst/_insidetextfont.py index be40e6cc01..388e03774a 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/_insidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/_insidetextfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_leaf.py b/packages/python/plotly/plotly/graph_objs/sunburst/_leaf.py index 4e1a525bc5..4e87ecd713 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/_leaf.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/_leaf.py @@ -44,7 +44,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - opacity=None, + opacity: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/sunburst/_legendgrouptitle.py index a6fa58af54..ed27407565 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_marker.py b/packages/python/plotly/plotly/graph_objs/sunburst/_marker.py index 0f71c08caa..31a9404680 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/_marker.py @@ -448,20 +448,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colors=None, - colorscale=None, - colorssrc=None, + colors: numpy.ndarray=None, + colorscale: str=None, + colorssrc: str=None, line=None, pattern=None, - reversescale=None, - showscale=None, + reversescale: bool=None, + showscale: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_outsidetextfont.py b/packages/python/plotly/plotly/graph_objs/sunburst/_outsidetextfont.py index 09b0f95bb7..aeeac8e803 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/_outsidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/_outsidetextfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_root.py b/packages/python/plotly/plotly/graph_objs/sunburst/_root.py index 08f5f962c1..371422daa4 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/_root.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/_root.py @@ -50,7 +50,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_stream.py b/packages/python/plotly/plotly/graph_objs/sunburst/_stream.py index 2def2c93f2..fbde25ae1e 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_textfont.py b/packages/python/plotly/plotly/graph_objs/sunburst/_textfont.py index 8212e60389..fbc22086f4 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/_textfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/sunburst/hoverlabel/_font.py index 30cb7b8e08..3d7f560350 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/sunburst/legendgrouptitle/_font.py index 8d5dfd4471..f83501eb5b 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/sunburst/marker/_colorbar.py index 9a3f0974f3..a60879930c 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/_line.py b/packages/python/plotly/plotly/graph_objs/sunburst/marker/_line.py index e5f28cec71..73722df921 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/marker/_line.py @@ -119,10 +119,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str=None, + colorsrc: str=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/_pattern.py b/packages/python/plotly/plotly/graph_objs/sunburst/marker/_pattern.py index 1696ca0f6e..8b27c1280e 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/marker/_pattern.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/marker/_pattern.py @@ -334,18 +334,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, + bgcolorsrc: str=None, + fgcolor: str=None, + fgcolorsrc: str=None, + fgopacity: int|float=None, + fillmode: Any=None, + shape: Any=None, + shapesrc: str=None, + size: int|float=None, + sizesrc: str=None, + solidity: int|float=None, + soliditysrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_tickfont.py index 93e6fdfe49..5d47ba203e 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_tickformatstop.py index e37c88dab4..a748e9fddf 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_title.py index a1ff1d081e..5c6babc9db 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/title/_font.py index 9567079b5e..aa6f1086e1 100644 --- a/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/_colorbar.py b/packages/python/plotly/plotly/graph_objs/surface/_colorbar.py index c0bb0fb9d4..c19d2da418 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/surface/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/surface/_hoverlabel.py index 7d7ff80870..1c31f55d5c 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/surface/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/surface/_legendgrouptitle.py index 2f1e8ae20f..f1138baf0f 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/surface/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/_lighting.py b/packages/python/plotly/plotly/graph_objs/surface/_lighting.py index 18499de107..4d9191748f 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/_lighting.py +++ b/packages/python/plotly/plotly/graph_objs/surface/_lighting.py @@ -143,11 +143,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - ambient=None, - diffuse=None, - fresnel=None, - roughness=None, - specular=None, + ambient: int|float=None, + diffuse: int|float=None, + fresnel: int|float=None, + roughness: int|float=None, + specular: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/_lightposition.py b/packages/python/plotly/plotly/graph_objs/surface/_lightposition.py index f58da514a9..e1ef039e53 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/_lightposition.py +++ b/packages/python/plotly/plotly/graph_objs/surface/_lightposition.py @@ -89,9 +89,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float=None, + y: int|float=None, + z: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/_stream.py b/packages/python/plotly/plotly/graph_objs/surface/_stream.py index dfbae6f97d..1b653a3060 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/surface/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/surface/colorbar/_tickfont.py index 31f26d354e..f6c572612f 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/surface/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/surface/colorbar/_tickformatstop.py index 66c74d421c..f86d98b2b2 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/surface/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/surface/colorbar/_title.py index f711de98fe..ac93d4f209 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/surface/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/surface/colorbar/title/_font.py index 7b31f28221..b6a05a43f6 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/surface/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/contours/_x.py b/packages/python/plotly/plotly/graph_objs/surface/contours/_x.py index 908778a766..7c83a72e84 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/contours/_x.py +++ b/packages/python/plotly/plotly/graph_objs/surface/contours/_x.py @@ -283,17 +283,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - end=None, - highlight=None, - highlightcolor=None, - highlightwidth=None, + color: str=None, + end: int|float=None, + highlight: bool=None, + highlightcolor: str=None, + highlightwidth: int|float=None, project=None, - show=None, - size=None, - start=None, - usecolormap=None, - width=None, + show: bool=None, + size: int|float=None, + start: int|float=None, + usecolormap: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/contours/_y.py b/packages/python/plotly/plotly/graph_objs/surface/contours/_y.py index 362d49a0dc..2097b43c91 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/contours/_y.py +++ b/packages/python/plotly/plotly/graph_objs/surface/contours/_y.py @@ -283,17 +283,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - end=None, - highlight=None, - highlightcolor=None, - highlightwidth=None, + color: str=None, + end: int|float=None, + highlight: bool=None, + highlightcolor: str=None, + highlightwidth: int|float=None, project=None, - show=None, - size=None, - start=None, - usecolormap=None, - width=None, + show: bool=None, + size: int|float=None, + start: int|float=None, + usecolormap: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/contours/_z.py b/packages/python/plotly/plotly/graph_objs/surface/contours/_z.py index 3196cd2bfc..afc28bb195 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/contours/_z.py +++ b/packages/python/plotly/plotly/graph_objs/surface/contours/_z.py @@ -283,17 +283,17 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - end=None, - highlight=None, - highlightcolor=None, - highlightwidth=None, + color: str=None, + end: int|float=None, + highlight: bool=None, + highlightcolor: str=None, + highlightwidth: int|float=None, project=None, - show=None, - size=None, - start=None, - usecolormap=None, - width=None, + show: bool=None, + size: int|float=None, + start: int|float=None, + usecolormap: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/contours/x/_project.py b/packages/python/plotly/plotly/graph_objs/surface/contours/x/_project.py index 70068053b4..a95e48bca9 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/contours/x/_project.py +++ b/packages/python/plotly/plotly/graph_objs/surface/contours/x/_project.py @@ -107,9 +107,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: bool=None, + y: bool=None, + z: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/contours/y/_project.py b/packages/python/plotly/plotly/graph_objs/surface/contours/y/_project.py index 88d7dc41e7..2d5d222130 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/contours/y/_project.py +++ b/packages/python/plotly/plotly/graph_objs/surface/contours/y/_project.py @@ -107,9 +107,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: bool=None, + y: bool=None, + z: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/contours/z/_project.py b/packages/python/plotly/plotly/graph_objs/surface/contours/z/_project.py index 36ec06da1a..a05d20c539 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/contours/z/_project.py +++ b/packages/python/plotly/plotly/graph_objs/surface/contours/z/_project.py @@ -107,9 +107,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: bool=None, + y: bool=None, + z: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/surface/hoverlabel/_font.py index 6586b53d53..20e25af2dc 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/surface/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/surface/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/surface/legendgrouptitle/_font.py index e718dd2e4d..c28f256e38 100644 --- a/packages/python/plotly/plotly/graph_objs/surface/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/surface/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/table/_cells.py b/packages/python/plotly/plotly/graph_objs/table/_cells.py index 7f15aa2041..40b7ca4183 100644 --- a/packages/python/plotly/plotly/graph_objs/table/_cells.py +++ b/packages/python/plotly/plotly/graph_objs/table/_cells.py @@ -365,20 +365,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, + align: Any=None, + alignsrc: str=None, fill=None, font=None, - format=None, - formatsrc=None, - height=None, + format: numpy.ndarray=None, + formatsrc: str=None, + height: int|float=None, line=None, - prefix=None, - prefixsrc=None, - suffix=None, - suffixsrc=None, - values=None, - valuessrc=None, + prefix: str=None, + prefixsrc: str=None, + suffix: str=None, + suffixsrc: str=None, + values: numpy.ndarray=None, + valuessrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/table/_domain.py b/packages/python/plotly/plotly/graph_objs/table/_domain.py index e00af8914f..fae9d2c9b7 100644 --- a/packages/python/plotly/plotly/graph_objs/table/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/table/_domain.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/table/_header.py b/packages/python/plotly/plotly/graph_objs/table/_header.py index b1c0225fd3..d2904077fd 100644 --- a/packages/python/plotly/plotly/graph_objs/table/_header.py +++ b/packages/python/plotly/plotly/graph_objs/table/_header.py @@ -365,20 +365,20 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, + align: Any=None, + alignsrc: str=None, fill=None, font=None, - format=None, - formatsrc=None, - height=None, + format: numpy.ndarray=None, + formatsrc: str=None, + height: int|float=None, line=None, - prefix=None, - prefixsrc=None, - suffix=None, - suffixsrc=None, - values=None, - valuessrc=None, + prefix: str=None, + prefixsrc: str=None, + suffix: str=None, + suffixsrc: str=None, + values: numpy.ndarray=None, + valuessrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/table/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/table/_hoverlabel.py index bb96bda658..c8b6a66d72 100644 --- a/packages/python/plotly/plotly/graph_objs/table/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/table/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/table/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/table/_legendgrouptitle.py index 433cc0f827..951b7d66f7 100644 --- a/packages/python/plotly/plotly/graph_objs/table/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/table/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/table/_stream.py b/packages/python/plotly/plotly/graph_objs/table/_stream.py index 747d30d03c..7ee88a3904 100644 --- a/packages/python/plotly/plotly/graph_objs/table/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/table/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/table/cells/_fill.py b/packages/python/plotly/plotly/graph_objs/table/cells/_fill.py index 96d81076aa..9e0c1b1bae 100644 --- a/packages/python/plotly/plotly/graph_objs/table/cells/_fill.py +++ b/packages/python/plotly/plotly/graph_objs/table/cells/_fill.py @@ -72,8 +72,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, + color: str=None, + colorsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/table/cells/_font.py b/packages/python/plotly/plotly/graph_objs/table/cells/_font.py index 99f65a1e05..36e3901e25 100644 --- a/packages/python/plotly/plotly/graph_objs/table/cells/_font.py +++ b/packages/python/plotly/plotly/graph_objs/table/cells/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/table/cells/_line.py b/packages/python/plotly/plotly/graph_objs/table/cells/_line.py index 68dffe20cb..792bb18c8b 100644 --- a/packages/python/plotly/plotly/graph_objs/table/cells/_line.py +++ b/packages/python/plotly/plotly/graph_objs/table/cells/_line.py @@ -112,10 +112,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str=None, + colorsrc: str=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/table/header/_fill.py b/packages/python/plotly/plotly/graph_objs/table/header/_fill.py index 57f3964228..4c478de781 100644 --- a/packages/python/plotly/plotly/graph_objs/table/header/_fill.py +++ b/packages/python/plotly/plotly/graph_objs/table/header/_fill.py @@ -72,8 +72,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, + color: str=None, + colorsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/table/header/_font.py b/packages/python/plotly/plotly/graph_objs/table/header/_font.py index 6ade2beb99..c95c42997e 100644 --- a/packages/python/plotly/plotly/graph_objs/table/header/_font.py +++ b/packages/python/plotly/plotly/graph_objs/table/header/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/table/header/_line.py b/packages/python/plotly/plotly/graph_objs/table/header/_line.py index d23a20db35..6f33db182d 100644 --- a/packages/python/plotly/plotly/graph_objs/table/header/_line.py +++ b/packages/python/plotly/plotly/graph_objs/table/header/_line.py @@ -112,10 +112,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str=None, + colorsrc: str=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/table/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/table/hoverlabel/_font.py index 7eaa8401cb..8a31d638df 100644 --- a/packages/python/plotly/plotly/graph_objs/table/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/table/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/table/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/table/legendgrouptitle/_font.py index 7028c93662..feb2a168aa 100644 --- a/packages/python/plotly/plotly/graph_objs/table/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/table/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_domain.py b/packages/python/plotly/plotly/graph_objs/treemap/_domain.py index eed13a5ccd..43018e5ce3 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/_domain.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/_domain.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - column=None, - row=None, - x=None, - y=None, + column: int=None, + row: int=None, + x: list=None, + y: list=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/treemap/_hoverlabel.py index f4304e7325..c182b12523 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_insidetextfont.py b/packages/python/plotly/plotly/graph_objs/treemap/_insidetextfont.py index f03fc79bf2..36ffc62b1b 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/_insidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/_insidetextfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/treemap/_legendgrouptitle.py index d8fd6ddc52..12afe5481e 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_marker.py b/packages/python/plotly/plotly/graph_objs/treemap/_marker.py index 3fa589e8a3..7224cff975 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/_marker.py @@ -532,23 +532,23 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - autocolorscale=None, - cauto=None, - cmax=None, - cmid=None, - cmin=None, - coloraxis=None, + autocolorscale: bool=None, + cauto: bool=None, + cmax: int|float=None, + cmid: int|float=None, + cmin: int|float=None, + coloraxis: str=None, colorbar=None, - colors=None, - colorscale=None, - colorssrc=None, - cornerradius=None, - depthfade=None, + colors: numpy.ndarray=None, + colorscale: str=None, + colorssrc: str=None, + cornerradius: int|float=None, + depthfade: Any=None, line=None, pad=None, pattern=None, - reversescale=None, - showscale=None, + reversescale: bool=None, + showscale: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_outsidetextfont.py b/packages/python/plotly/plotly/graph_objs/treemap/_outsidetextfont.py index b1075b4569..17681bdc2e 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/_outsidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/_outsidetextfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_pathbar.py b/packages/python/plotly/plotly/graph_objs/treemap/_pathbar.py index ece8a5e30b..8f9e7b3e48 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/_pathbar.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/_pathbar.py @@ -145,11 +145,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - edgeshape=None, - side=None, + edgeshape: Any=None, + side: Any=None, textfont=None, - thickness=None, - visible=None, + thickness: int|float=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_root.py b/packages/python/plotly/plotly/graph_objs/treemap/_root.py index d6f719422d..a2f4e21340 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/_root.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/_root.py @@ -50,7 +50,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_stream.py b/packages/python/plotly/plotly/graph_objs/treemap/_stream.py index a341fd350f..b80d271683 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_textfont.py b/packages/python/plotly/plotly/graph_objs/treemap/_textfont.py index 860c8dd2a9..b13ebfcdaa 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/_textfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_tiling.py b/packages/python/plotly/plotly/graph_objs/treemap/_tiling.py index 3bf0dbcb74..5e38409cea 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/_tiling.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/_tiling.py @@ -140,10 +140,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - flip=None, - packing=None, - pad=None, - squarifyratio=None, + flip: Any=None, + packing: Any=None, + pad: int|float=None, + squarifyratio: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/treemap/hoverlabel/_font.py index aa25d49c7a..c4f4c5b401 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/treemap/legendgrouptitle/_font.py index 7296d30434..6097e8f7a9 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/_colorbar.py b/packages/python/plotly/plotly/graph_objs/treemap/marker/_colorbar.py index e2c1cf9db2..d68fed7572 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/marker/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/marker/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/_line.py b/packages/python/plotly/plotly/graph_objs/treemap/marker/_line.py index 4e3eea8190..323736c5fb 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/marker/_line.py @@ -119,10 +119,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - colorsrc=None, - width=None, - widthsrc=None, + color: str=None, + colorsrc: str=None, + width: int|float=None, + widthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/_pad.py b/packages/python/plotly/plotly/graph_objs/treemap/marker/_pad.py index 28aee358e3..76254b9246 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/marker/_pad.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/marker/_pad.py @@ -108,10 +108,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - b=None, - l=None, - r=None, - t=None, + b: int|float=None, + l: int|float=None, + r: int|float=None, + t: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/_pattern.py b/packages/python/plotly/plotly/graph_objs/treemap/marker/_pattern.py index 8f8309e7e9..a435cfc506 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/marker/_pattern.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/marker/_pattern.py @@ -334,18 +334,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, + bgcolorsrc: str=None, + fgcolor: str=None, + fgcolorsrc: str=None, + fgopacity: int|float=None, + fillmode: Any=None, + shape: Any=None, + shapesrc: str=None, + size: int|float=None, + sizesrc: str=None, + solidity: int|float=None, + soliditysrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_tickfont.py index acdbc609c2..b4bd02945e 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_tickformatstop.py index b069a5bc32..4f9546e20b 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_title.py index 4935aa8bcd..fa5424e733 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/title/_font.py index d7992aed95..03d956b2b4 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/treemap/pathbar/_textfont.py b/packages/python/plotly/plotly/graph_objs/treemap/pathbar/_textfont.py index 9dfc568176..bc44b4cf6b 100644 --- a/packages/python/plotly/plotly/graph_objs/treemap/pathbar/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/treemap/pathbar/_textfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/violin/_box.py b/packages/python/plotly/plotly/graph_objs/violin/_box.py index 1ee906a6ed..2205472ae6 100644 --- a/packages/python/plotly/plotly/graph_objs/violin/_box.py +++ b/packages/python/plotly/plotly/graph_objs/violin/_box.py @@ -120,10 +120,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fillcolor=None, + fillcolor: str=None, line=None, - visible=None, - width=None, + visible: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/violin/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/violin/_hoverlabel.py index 6c39ed6382..5ab913cfa0 100644 --- a/packages/python/plotly/plotly/graph_objs/violin/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/violin/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/violin/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/violin/_legendgrouptitle.py index fc0ae83496..a780d70110 100644 --- a/packages/python/plotly/plotly/graph_objs/violin/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/violin/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/violin/_line.py b/packages/python/plotly/plotly/graph_objs/violin/_line.py index c656092c78..05fb55b224 100644 --- a/packages/python/plotly/plotly/graph_objs/violin/_line.py +++ b/packages/python/plotly/plotly/graph_objs/violin/_line.py @@ -68,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/violin/_marker.py b/packages/python/plotly/plotly/graph_objs/violin/_marker.py index bffcab2e03..f2fcd1107b 100644 --- a/packages/python/plotly/plotly/graph_objs/violin/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/violin/_marker.py @@ -289,13 +289,13 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - angle=None, - color=None, + angle: int|float=None, + color: str=None, line=None, - opacity=None, - outliercolor=None, - size=None, - symbol=None, + opacity: int|float=None, + outliercolor: str=None, + size: int|float=None, + symbol: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/violin/_meanline.py b/packages/python/plotly/plotly/graph_objs/violin/_meanline.py index f5b8dc8e87..9ae9426b2d 100644 --- a/packages/python/plotly/plotly/graph_objs/violin/_meanline.py +++ b/packages/python/plotly/plotly/graph_objs/violin/_meanline.py @@ -97,9 +97,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - visible=None, - width=None, + color: str=None, + visible: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/violin/_stream.py b/packages/python/plotly/plotly/graph_objs/violin/_stream.py index de41d4b0ce..de3dfbc1af 100644 --- a/packages/python/plotly/plotly/graph_objs/violin/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/violin/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/violin/box/_line.py b/packages/python/plotly/plotly/graph_objs/violin/box/_line.py index 1cf14b4356..956c8c2bd8 100644 --- a/packages/python/plotly/plotly/graph_objs/violin/box/_line.py +++ b/packages/python/plotly/plotly/graph_objs/violin/box/_line.py @@ -68,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/violin/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/violin/hoverlabel/_font.py index 7ab387852a..bf1e9ab760 100644 --- a/packages/python/plotly/plotly/graph_objs/violin/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/violin/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/violin/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/violin/legendgrouptitle/_font.py index 39a3fd5454..bb59b14377 100644 --- a/packages/python/plotly/plotly/graph_objs/violin/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/violin/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/violin/marker/_line.py b/packages/python/plotly/plotly/graph_objs/violin/marker/_line.py index 5d1ab03674..d9918e8767 100644 --- a/packages/python/plotly/plotly/graph_objs/violin/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/violin/marker/_line.py @@ -128,10 +128,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - outliercolor=None, - outlierwidth=None, - width=None, + color: str=None, + outliercolor: str=None, + outlierwidth: int|float=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/violin/selected/_marker.py b/packages/python/plotly/plotly/graph_objs/violin/selected/_marker.py index 45a10146e9..a31dcd8ece 100644 --- a/packages/python/plotly/plotly/graph_objs/violin/selected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/violin/selected/_marker.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/violin/unselected/_marker.py b/packages/python/plotly/plotly/graph_objs/violin/unselected/_marker.py index f2517c5529..d79a501d5a 100644 --- a/packages/python/plotly/plotly/graph_objs/violin/unselected/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/violin/unselected/_marker.py @@ -96,9 +96,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - opacity=None, - size=None, + color: str=None, + opacity: int|float=None, + size: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/_colorbar.py b/packages/python/plotly/plotly/graph_objs/volume/_colorbar.py index b65844bdd9..6c1266cba6 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/_colorbar.py +++ b/packages/python/plotly/plotly/graph_objs/volume/_colorbar.py @@ -1396,55 +1396,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, + bgcolor: str=None, + bordercolor: str=None, + borderwidth: int|float=None, + dtick: Any=None, + exponentformat: Any=None, + labelalias: Any=None, + len: int|float=None, + lenmode: Any=None, + minexponent: int|float=None, + nticks: int=None, + orientation: Any=None, + outlinecolor: str=None, + outlinewidth: int|float=None, + separatethousands: bool=None, + showexponent: Any=None, + showticklabels: bool=None, + showtickprefix: Any=None, + showticksuffix: Any=None, + thickness: int|float=None, + thicknessmode: Any=None, + tick0: Any=None, + tickangle: int|float=None, + tickcolor: str=None, tickfont=None, - tickformat=None, + tickformat: str=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, + ticklabeloverflow: Any=None, + ticklabelposition: Any=None, + ticklabelstep: int=None, + ticklen: int|float=None, + tickmode: Any=None, + tickprefix: str=None, + ticks: Any=None, + ticksuffix: str=None, + ticktext: numpy.ndarray=None, + ticktextsrc: str=None, + tickvals: numpy.ndarray=None, + tickvalssrc: str=None, + tickwidth: int|float=None, title=None, - x=None, - xanchor=None, - xpad=None, - xref=None, - y=None, - yanchor=None, - ypad=None, - yref=None, + x: int|float=None, + xanchor: Any=None, + xpad: int|float=None, + xref: Any=None, + y: int|float=None, + yanchor: Any=None, + ypad: int|float=None, + yref: Any=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/_contour.py b/packages/python/plotly/plotly/graph_objs/volume/_contour.py index 0f330a6747..9d3f017417 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/_contour.py +++ b/packages/python/plotly/plotly/graph_objs/volume/_contour.py @@ -90,9 +90,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - show=None, - width=None, + color: str=None, + show: bool=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/volume/_hoverlabel.py index ca3c604720..aecc9cd02e 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/volume/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/volume/_legendgrouptitle.py index 1319192490..69d3730801 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/volume/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/_lighting.py b/packages/python/plotly/plotly/graph_objs/volume/_lighting.py index 7d6b2afc25..fc0c3211cf 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/_lighting.py +++ b/packages/python/plotly/plotly/graph_objs/volume/_lighting.py @@ -191,13 +191,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, + diffuse: int|float=None, + facenormalsepsilon: int|float=None, + fresnel: int|float=None, + roughness: int|float=None, + specular: int|float=None, + vertexnormalsepsilon: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/_lightposition.py b/packages/python/plotly/plotly/graph_objs/volume/_lightposition.py index 943013c88f..69be8c4a61 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/_lightposition.py +++ b/packages/python/plotly/plotly/graph_objs/volume/_lightposition.py @@ -89,9 +89,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - x=None, - y=None, - z=None, + x: int|float=None, + y: int|float=None, + z: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/_spaceframe.py b/packages/python/plotly/plotly/graph_objs/volume/_spaceframe.py index c3dd0ec67e..5b107c3ced 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/_spaceframe.py +++ b/packages/python/plotly/plotly/graph_objs/volume/_spaceframe.py @@ -75,8 +75,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - show=None, + fill: int|float=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/_stream.py b/packages/python/plotly/plotly/graph_objs/volume/_stream.py index fc7e3ac8ea..75a13e139f 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/volume/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/_surface.py b/packages/python/plotly/plotly/graph_objs/volume/_surface.py index dec6014538..05fd040001 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/_surface.py +++ b/packages/python/plotly/plotly/graph_objs/volume/_surface.py @@ -138,10 +138,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - count=None, - fill=None, - pattern=None, - show=None, + count: int=None, + fill: int|float=None, + pattern: Any=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/caps/_x.py b/packages/python/plotly/plotly/graph_objs/volume/caps/_x.py index 1c812976a6..47c6b912af 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/caps/_x.py +++ b/packages/python/plotly/plotly/graph_objs/volume/caps/_x.py @@ -78,8 +78,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - show=None, + fill: int|float=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/caps/_y.py b/packages/python/plotly/plotly/graph_objs/volume/caps/_y.py index 3efd18d9ce..1ea1447653 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/caps/_y.py +++ b/packages/python/plotly/plotly/graph_objs/volume/caps/_y.py @@ -78,8 +78,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - show=None, + fill: int|float=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/caps/_z.py b/packages/python/plotly/plotly/graph_objs/volume/caps/_z.py index 949cd587cd..1045e05fbf 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/caps/_z.py +++ b/packages/python/plotly/plotly/graph_objs/volume/caps/_z.py @@ -78,8 +78,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - show=None, + fill: int|float=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/colorbar/_tickfont.py b/packages/python/plotly/plotly/graph_objs/volume/colorbar/_tickfont.py index 94e4694554..4c90393b51 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/colorbar/_tickfont.py +++ b/packages/python/plotly/plotly/graph_objs/volume/colorbar/_tickfont.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/colorbar/_tickformatstop.py b/packages/python/plotly/plotly/graph_objs/volume/colorbar/_tickformatstop.py index 86834e6842..2506aa54c6 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/colorbar/_tickformatstop.py +++ b/packages/python/plotly/plotly/graph_objs/volume/colorbar/_tickformatstop.py @@ -173,11 +173,11 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - dtickrange=None, - enabled=None, - name=None, - templateitemname=None, - value=None, + dtickrange: list=None, + enabled: bool=None, + name: str=None, + templateitemname: str=None, + value: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/colorbar/_title.py b/packages/python/plotly/plotly/graph_objs/volume/colorbar/_title.py index d6586154e9..eebf59eba5 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/colorbar/_title.py +++ b/packages/python/plotly/plotly/graph_objs/volume/colorbar/_title.py @@ -97,8 +97,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - side=None, - text=None, + side: Any=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/colorbar/title/_font.py b/packages/python/plotly/plotly/graph_objs/volume/colorbar/title/_font.py index 5525a40b38..208996f7d2 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/colorbar/title/_font.py +++ b/packages/python/plotly/plotly/graph_objs/volume/colorbar/title/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/volume/hoverlabel/_font.py index 5417059ca4..9d5ca178d3 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/volume/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/volume/legendgrouptitle/_font.py index 7ff35a3cdf..72250c9a28 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/volume/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/slices/_x.py b/packages/python/plotly/plotly/graph_objs/volume/slices/_x.py index a5956114df..cee3a33e38 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/slices/_x.py +++ b/packages/python/plotly/plotly/graph_objs/volume/slices/_x.py @@ -123,10 +123,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - locations=None, - locationssrc=None, - show=None, + fill: int|float=None, + locations: numpy.ndarray=None, + locationssrc: str=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/slices/_y.py b/packages/python/plotly/plotly/graph_objs/volume/slices/_y.py index 0c8f937f91..1bc6484771 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/slices/_y.py +++ b/packages/python/plotly/plotly/graph_objs/volume/slices/_y.py @@ -123,10 +123,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - locations=None, - locationssrc=None, - show=None, + fill: int|float=None, + locations: numpy.ndarray=None, + locationssrc: str=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/volume/slices/_z.py b/packages/python/plotly/plotly/graph_objs/volume/slices/_z.py index 3b294d4441..b1e28dafc4 100644 --- a/packages/python/plotly/plotly/graph_objs/volume/slices/_z.py +++ b/packages/python/plotly/plotly/graph_objs/volume/slices/_z.py @@ -123,10 +123,10 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - fill=None, - locations=None, - locationssrc=None, - show=None, + fill: int|float=None, + locations: numpy.ndarray=None, + locationssrc: str=None, + show: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_connector.py b/packages/python/plotly/plotly/graph_objs/waterfall/_connector.py index 1d91a57a8f..73948e9f0a 100644 --- a/packages/python/plotly/plotly/graph_objs/waterfall/_connector.py +++ b/packages/python/plotly/plotly/graph_objs/waterfall/_connector.py @@ -90,8 +90,8 @@ def _prop_descriptions(self): def __init__(self, arg=None, line=None, - mode=None, - visible=None, + mode: Any=None, + visible: bool=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_hoverlabel.py b/packages/python/plotly/plotly/graph_objs/waterfall/_hoverlabel.py index 35fbc76f42..10393aa967 100644 --- a/packages/python/plotly/plotly/graph_objs/waterfall/_hoverlabel.py +++ b/packages/python/plotly/plotly/graph_objs/waterfall/_hoverlabel.py @@ -258,15 +258,15 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - align=None, - alignsrc=None, - bgcolor=None, - bgcolorsrc=None, - bordercolor=None, - bordercolorsrc=None, + align: Any=None, + alignsrc: str=None, + bgcolor: str=None, + bgcolorsrc: str=None, + bordercolor: str=None, + bordercolorsrc: str=None, font=None, - namelength=None, - namelengthsrc=None, + namelength: int=None, + namelengthsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_insidetextfont.py b/packages/python/plotly/plotly/graph_objs/waterfall/_insidetextfont.py index a7cfb7c395..f3a3f74f36 100644 --- a/packages/python/plotly/plotly/graph_objs/waterfall/_insidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/waterfall/_insidetextfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_legendgrouptitle.py b/packages/python/plotly/plotly/graph_objs/waterfall/_legendgrouptitle.py index 77ef57cbb8..4e7627f271 100644 --- a/packages/python/plotly/plotly/graph_objs/waterfall/_legendgrouptitle.py +++ b/packages/python/plotly/plotly/graph_objs/waterfall/_legendgrouptitle.py @@ -69,7 +69,7 @@ def _prop_descriptions(self): def __init__(self, arg=None, font=None, - text=None, + text: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_outsidetextfont.py b/packages/python/plotly/plotly/graph_objs/waterfall/_outsidetextfont.py index 6bf59f1611..2b7e9d089e 100644 --- a/packages/python/plotly/plotly/graph_objs/waterfall/_outsidetextfont.py +++ b/packages/python/plotly/plotly/graph_objs/waterfall/_outsidetextfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_stream.py b/packages/python/plotly/plotly/graph_objs/waterfall/_stream.py index 86b6c63862..39ae55e8bd 100644 --- a/packages/python/plotly/plotly/graph_objs/waterfall/_stream.py +++ b/packages/python/plotly/plotly/graph_objs/waterfall/_stream.py @@ -73,8 +73,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - maxpoints=None, - token=None, + maxpoints: int|float=None, + token: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_textfont.py b/packages/python/plotly/plotly/graph_objs/waterfall/_textfont.py index 9e34ca54e8..23052c457c 100644 --- a/packages/python/plotly/plotly/graph_objs/waterfall/_textfont.py +++ b/packages/python/plotly/plotly/graph_objs/waterfall/_textfont.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/connector/_line.py b/packages/python/plotly/plotly/graph_objs/waterfall/connector/_line.py index 3d57f57d05..8838a36014 100644 --- a/packages/python/plotly/plotly/graph_objs/waterfall/connector/_line.py +++ b/packages/python/plotly/plotly/graph_objs/waterfall/connector/_line.py @@ -99,9 +99,9 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - dash=None, - width=None, + color: str=None, + dash: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/decreasing/_marker.py b/packages/python/plotly/plotly/graph_objs/waterfall/decreasing/_marker.py index a7c7056038..9372e05e44 100644 --- a/packages/python/plotly/plotly/graph_objs/waterfall/decreasing/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/waterfall/decreasing/_marker.py @@ -70,7 +70,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, line=None, **kwargs ): diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/decreasing/marker/_line.py b/packages/python/plotly/plotly/graph_objs/waterfall/decreasing/marker/_line.py index 1b58ef494c..42e5822cd7 100644 --- a/packages/python/plotly/plotly/graph_objs/waterfall/decreasing/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/waterfall/decreasing/marker/_line.py @@ -68,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/hoverlabel/_font.py b/packages/python/plotly/plotly/graph_objs/waterfall/hoverlabel/_font.py index fd352aea02..cdd407278e 100644 --- a/packages/python/plotly/plotly/graph_objs/waterfall/hoverlabel/_font.py +++ b/packages/python/plotly/plotly/graph_objs/waterfall/hoverlabel/_font.py @@ -470,24 +470,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, + colorsrc: str=None, + family: str=None, + familysrc: str=None, + lineposition: Any=None, + linepositionsrc: str=None, + shadow: str=None, + shadowsrc: str=None, + size: int|float=None, + sizesrc: str=None, + style: Any=None, + stylesrc: str=None, + textcase: Any=None, + textcasesrc: str=None, + variant: Any=None, + variantsrc: str=None, + weight: int=None, + weightsrc: str=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/increasing/_marker.py b/packages/python/plotly/plotly/graph_objs/waterfall/increasing/_marker.py index 8f040a10a4..6e926c49aa 100644 --- a/packages/python/plotly/plotly/graph_objs/waterfall/increasing/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/waterfall/increasing/_marker.py @@ -70,7 +70,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, line=None, **kwargs ): diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/increasing/marker/_line.py b/packages/python/plotly/plotly/graph_objs/waterfall/increasing/marker/_line.py index 358d60aadf..1e42f125e1 100644 --- a/packages/python/plotly/plotly/graph_objs/waterfall/increasing/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/waterfall/increasing/marker/_line.py @@ -68,8 +68,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str=None, + width: int|float=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/legendgrouptitle/_font.py b/packages/python/plotly/plotly/graph_objs/waterfall/legendgrouptitle/_font.py index b5a6147130..a280a148dd 100644 --- a/packages/python/plotly/plotly/graph_objs/waterfall/legendgrouptitle/_font.py +++ b/packages/python/plotly/plotly/graph_objs/waterfall/legendgrouptitle/_font.py @@ -253,15 +253,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, + family: str=None, + lineposition: Any=None, + shadow: str=None, + size: int|float=None, + style: Any=None, + textcase: Any=None, + variant: Any=None, + weight: int=None, **kwargs ): """ diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/totals/_marker.py b/packages/python/plotly/plotly/graph_objs/waterfall/totals/_marker.py index 1351463084..323df22721 100644 --- a/packages/python/plotly/plotly/graph_objs/waterfall/totals/_marker.py +++ b/packages/python/plotly/plotly/graph_objs/waterfall/totals/_marker.py @@ -72,7 +72,7 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, + color: str=None, line=None, **kwargs ): diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/totals/marker/_line.py b/packages/python/plotly/plotly/graph_objs/waterfall/totals/marker/_line.py index 51839dc256..7f220258a4 100644 --- a/packages/python/plotly/plotly/graph_objs/waterfall/totals/marker/_line.py +++ b/packages/python/plotly/plotly/graph_objs/waterfall/totals/marker/_line.py @@ -70,8 +70,8 @@ def _prop_descriptions(self): """ def __init__(self, arg=None, - color=None, - width=None, + color: str=None, + width: int|float=None, **kwargs ): """