mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-21 18:23:35 +00:00
29 lines
1009 B
Python
29 lines
1009 B
Python
import _plotly_utils.basevalidators
|
|
|
|
|
|
class ProjectionValidator(_plotly_utils.basevalidators.CompoundValidator):
|
|
def __init__(self, plotly_name="projection", parent_name="scatter3d", **kwargs):
|
|
super(ProjectionValidator, self).__init__(
|
|
plotly_name=plotly_name,
|
|
parent_name=parent_name,
|
|
data_class_str=kwargs.pop("data_class_str", "Projection"),
|
|
data_docs=kwargs.pop(
|
|
"data_docs",
|
|
"""
|
|
x
|
|
:class:`plotly.graph_objects.scatter3d.projecti
|
|
on.X` instance or dict with compatible
|
|
properties
|
|
y
|
|
:class:`plotly.graph_objects.scatter3d.projecti
|
|
on.Y` instance or dict with compatible
|
|
properties
|
|
z
|
|
:class:`plotly.graph_objects.scatter3d.projecti
|
|
on.Z` instance or dict with compatible
|
|
properties
|
|
""",
|
|
),
|
|
**kwargs,
|
|
)
|