mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 18:32:15 +00:00
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
import _plotly_utils.basevalidators
|
|
|
|
|
|
class StartsValidator(_plotly_utils.basevalidators.CompoundValidator):
|
|
def __init__(self, plotly_name="starts", parent_name="streamtube", **kwargs):
|
|
super(StartsValidator, self).__init__(
|
|
plotly_name=plotly_name,
|
|
parent_name=parent_name,
|
|
data_class_str=kwargs.pop("data_class_str", "Starts"),
|
|
data_docs=kwargs.pop(
|
|
"data_docs",
|
|
"""
|
|
x
|
|
Sets the x components of the starting position
|
|
of the streamtubes
|
|
xsrc
|
|
Sets the source reference on Chart Studio Cloud
|
|
for `x`.
|
|
y
|
|
Sets the y components of the starting position
|
|
of the streamtubes
|
|
ysrc
|
|
Sets the source reference on Chart Studio Cloud
|
|
for `y`.
|
|
z
|
|
Sets the z components of the starting position
|
|
of the streamtubes
|
|
zsrc
|
|
Sets the source reference on Chart Studio Cloud
|
|
for `z`.
|
|
""",
|
|
),
|
|
**kwargs,
|
|
)
|