mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-07-01 14:07:48 +00:00
first commit
This commit is contained in:
@ -0,0 +1,21 @@
|
||||
import sys
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
if sys.version_info < (3, 7) or TYPE_CHECKING:
|
||||
from ._realaxis import RealaxisValidator
|
||||
from ._imaginaryaxis import ImaginaryaxisValidator
|
||||
from ._domain import DomainValidator
|
||||
from ._bgcolor import BgcolorValidator
|
||||
else:
|
||||
from _plotly_utils.importers import relative_import
|
||||
|
||||
__all__, __getattr__, __dir__ = relative_import(
|
||||
__name__,
|
||||
[],
|
||||
[
|
||||
"._realaxis.RealaxisValidator",
|
||||
"._imaginaryaxis.ImaginaryaxisValidator",
|
||||
"._domain.DomainValidator",
|
||||
"._bgcolor.BgcolorValidator",
|
||||
],
|
||||
)
|
@ -0,0 +1,11 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class BgcolorValidator(_plotly_utils.basevalidators.ColorValidator):
|
||||
def __init__(self, plotly_name="bgcolor", parent_name="layout.smith", **kwargs):
|
||||
super(BgcolorValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,29 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class DomainValidator(_plotly_utils.basevalidators.CompoundValidator):
|
||||
def __init__(self, plotly_name="domain", parent_name="layout.smith", **kwargs):
|
||||
super(DomainValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
data_class_str=kwargs.pop("data_class_str", "Domain"),
|
||||
data_docs=kwargs.pop(
|
||||
"data_docs",
|
||||
"""
|
||||
column
|
||||
If there is a layout grid, use the domain for
|
||||
this column in the grid for this smith subplot
|
||||
.
|
||||
row
|
||||
If there is a layout grid, use the domain for
|
||||
this row in the grid for this smith subplot .
|
||||
x
|
||||
Sets the horizontal domain of this smith
|
||||
subplot (in plot fraction).
|
||||
y
|
||||
Sets the vertical domain of this smith subplot
|
||||
(in plot fraction).
|
||||
""",
|
||||
),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,121 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class ImaginaryaxisValidator(_plotly_utils.basevalidators.CompoundValidator):
|
||||
def __init__(
|
||||
self, plotly_name="imaginaryaxis", parent_name="layout.smith", **kwargs
|
||||
):
|
||||
super(ImaginaryaxisValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
data_class_str=kwargs.pop("data_class_str", "Imaginaryaxis"),
|
||||
data_docs=kwargs.pop(
|
||||
"data_docs",
|
||||
"""
|
||||
color
|
||||
Sets default for all colors associated with
|
||||
this axis all at once: line, font, tick, and
|
||||
grid colors. Grid color is lightened by
|
||||
blending this with the plot background
|
||||
Individual pieces can override this.
|
||||
gridcolor
|
||||
Sets the color of the grid lines.
|
||||
griddash
|
||||
Sets the dash style of lines. Set to a dash
|
||||
type string ("solid", "dot", "dash",
|
||||
"longdash", "dashdot", or "longdashdot") or a
|
||||
dash length list in px (eg "5px,10px,2px,2px").
|
||||
gridwidth
|
||||
Sets the width (in px) of the grid lines.
|
||||
hoverformat
|
||||
Sets the hover text formatting rule using d3
|
||||
formatting mini-languages which are very
|
||||
similar to those in Python. For numbers, see: h
|
||||
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
|
||||
ormat. And for dates see:
|
||||
https://github.com/d3/d3-time-
|
||||
format/tree/v2.2.3#locale_format. We add two
|
||||
items to d3's date formatter: "%h" for half of
|
||||
the year as a decimal number as well as "%{n}f"
|
||||
for fractional seconds with n digits. For
|
||||
example, *2016-10-13 09:15:23.456* with
|
||||
tickformat "%H~%M~%S.%2f" would display
|
||||
"09~15~23.46"
|
||||
layer
|
||||
Sets the layer on which this axis is displayed.
|
||||
If *above traces*, this axis is displayed above
|
||||
all the subplot's traces If *below traces*,
|
||||
this axis is displayed below all the subplot's
|
||||
traces, but above the grid lines. Useful when
|
||||
used together with scatter-like traces with
|
||||
`cliponaxis` set to False to show markers
|
||||
and/or text nodes above this axis.
|
||||
linecolor
|
||||
Sets the axis line color.
|
||||
linewidth
|
||||
Sets the width (in px) of the axis line.
|
||||
showgrid
|
||||
Determines whether or not grid lines are drawn.
|
||||
If True, the grid lines are drawn at every tick
|
||||
mark.
|
||||
showline
|
||||
Determines whether or not a line bounding this
|
||||
axis is drawn.
|
||||
showticklabels
|
||||
Determines whether or not the tick labels are
|
||||
drawn.
|
||||
showtickprefix
|
||||
If "all", all tick labels are displayed with a
|
||||
prefix. If "first", only the first tick is
|
||||
displayed with a prefix. If "last", only the
|
||||
last tick is displayed with a suffix. If
|
||||
"none", tick prefixes are hidden.
|
||||
showticksuffix
|
||||
Same as `showtickprefix` but for tick suffixes.
|
||||
tickcolor
|
||||
Sets the tick color.
|
||||
tickfont
|
||||
Sets the tick font.
|
||||
tickformat
|
||||
Sets the tick label formatting rule using d3
|
||||
formatting mini-languages which are very
|
||||
similar to those in Python. For numbers, see: h
|
||||
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
|
||||
ormat. And for dates see:
|
||||
https://github.com/d3/d3-time-
|
||||
format/tree/v2.2.3#locale_format. We add two
|
||||
items to d3's date formatter: "%h" for half of
|
||||
the year as a decimal number as well as "%{n}f"
|
||||
for fractional seconds with n digits. For
|
||||
example, *2016-10-13 09:15:23.456* with
|
||||
tickformat "%H~%M~%S.%2f" would display
|
||||
"09~15~23.46"
|
||||
ticklen
|
||||
Sets the tick length (in px).
|
||||
tickprefix
|
||||
Sets a tick label prefix.
|
||||
ticks
|
||||
Determines whether ticks are drawn or not. If
|
||||
"", this axis' ticks are not drawn. If
|
||||
"outside" ("inside"), this axis' are drawn
|
||||
outside (inside) the axis lines.
|
||||
ticksuffix
|
||||
Sets a tick label suffix.
|
||||
tickvals
|
||||
Sets the values at which ticks on this axis
|
||||
appear. Defaults to `realaxis.tickvals` plus
|
||||
the same as negatives and zero.
|
||||
tickvalssrc
|
||||
Sets the source reference on Chart Studio Cloud
|
||||
for `tickvals`.
|
||||
tickwidth
|
||||
Sets the tick width (in px).
|
||||
visible
|
||||
A single toggle to hide the axis while
|
||||
preserving interaction like dragging. Default
|
||||
is true when a cheater plot is present on the
|
||||
axis, otherwise false
|
||||
""",
|
||||
),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,125 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class RealaxisValidator(_plotly_utils.basevalidators.CompoundValidator):
|
||||
def __init__(self, plotly_name="realaxis", parent_name="layout.smith", **kwargs):
|
||||
super(RealaxisValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
data_class_str=kwargs.pop("data_class_str", "Realaxis"),
|
||||
data_docs=kwargs.pop(
|
||||
"data_docs",
|
||||
"""
|
||||
color
|
||||
Sets default for all colors associated with
|
||||
this axis all at once: line, font, tick, and
|
||||
grid colors. Grid color is lightened by
|
||||
blending this with the plot background
|
||||
Individual pieces can override this.
|
||||
gridcolor
|
||||
Sets the color of the grid lines.
|
||||
griddash
|
||||
Sets the dash style of lines. Set to a dash
|
||||
type string ("solid", "dot", "dash",
|
||||
"longdash", "dashdot", or "longdashdot") or a
|
||||
dash length list in px (eg "5px,10px,2px,2px").
|
||||
gridwidth
|
||||
Sets the width (in px) of the grid lines.
|
||||
hoverformat
|
||||
Sets the hover text formatting rule using d3
|
||||
formatting mini-languages which are very
|
||||
similar to those in Python. For numbers, see: h
|
||||
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
|
||||
ormat. And for dates see:
|
||||
https://github.com/d3/d3-time-
|
||||
format/tree/v2.2.3#locale_format. We add two
|
||||
items to d3's date formatter: "%h" for half of
|
||||
the year as a decimal number as well as "%{n}f"
|
||||
for fractional seconds with n digits. For
|
||||
example, *2016-10-13 09:15:23.456* with
|
||||
tickformat "%H~%M~%S.%2f" would display
|
||||
"09~15~23.46"
|
||||
layer
|
||||
Sets the layer on which this axis is displayed.
|
||||
If *above traces*, this axis is displayed above
|
||||
all the subplot's traces If *below traces*,
|
||||
this axis is displayed below all the subplot's
|
||||
traces, but above the grid lines. Useful when
|
||||
used together with scatter-like traces with
|
||||
`cliponaxis` set to False to show markers
|
||||
and/or text nodes above this axis.
|
||||
linecolor
|
||||
Sets the axis line color.
|
||||
linewidth
|
||||
Sets the width (in px) of the axis line.
|
||||
showgrid
|
||||
Determines whether or not grid lines are drawn.
|
||||
If True, the grid lines are drawn at every tick
|
||||
mark.
|
||||
showline
|
||||
Determines whether or not a line bounding this
|
||||
axis is drawn.
|
||||
showticklabels
|
||||
Determines whether or not the tick labels are
|
||||
drawn.
|
||||
showtickprefix
|
||||
If "all", all tick labels are displayed with a
|
||||
prefix. If "first", only the first tick is
|
||||
displayed with a prefix. If "last", only the
|
||||
last tick is displayed with a suffix. If
|
||||
"none", tick prefixes are hidden.
|
||||
showticksuffix
|
||||
Same as `showtickprefix` but for tick suffixes.
|
||||
side
|
||||
Determines on which side of real axis line the
|
||||
tick and tick labels appear.
|
||||
tickangle
|
||||
Sets the angle of the tick labels with respect
|
||||
to the horizontal. For example, a `tickangle`
|
||||
of -90 draws the tick labels vertically.
|
||||
tickcolor
|
||||
Sets the tick color.
|
||||
tickfont
|
||||
Sets the tick font.
|
||||
tickformat
|
||||
Sets the tick label formatting rule using d3
|
||||
formatting mini-languages which are very
|
||||
similar to those in Python. For numbers, see: h
|
||||
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
|
||||
ormat. And for dates see:
|
||||
https://github.com/d3/d3-time-
|
||||
format/tree/v2.2.3#locale_format. We add two
|
||||
items to d3's date formatter: "%h" for half of
|
||||
the year as a decimal number as well as "%{n}f"
|
||||
for fractional seconds with n digits. For
|
||||
example, *2016-10-13 09:15:23.456* with
|
||||
tickformat "%H~%M~%S.%2f" would display
|
||||
"09~15~23.46"
|
||||
ticklen
|
||||
Sets the tick length (in px).
|
||||
tickprefix
|
||||
Sets a tick label prefix.
|
||||
ticks
|
||||
Determines whether ticks are drawn or not. If
|
||||
"", this axis' ticks are not drawn. If "top"
|
||||
("bottom"), this axis' are drawn above (below)
|
||||
the axis line.
|
||||
ticksuffix
|
||||
Sets a tick label suffix.
|
||||
tickvals
|
||||
Sets the values at which ticks on this axis
|
||||
appear.
|
||||
tickvalssrc
|
||||
Sets the source reference on Chart Studio Cloud
|
||||
for `tickvals`.
|
||||
tickwidth
|
||||
Sets the tick width (in px).
|
||||
visible
|
||||
A single toggle to hide the axis while
|
||||
preserving interaction like dragging. Default
|
||||
is true when a cheater plot is present on the
|
||||
axis, otherwise false
|
||||
""",
|
||||
),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,21 @@
|
||||
import sys
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
if sys.version_info < (3, 7) or TYPE_CHECKING:
|
||||
from ._y import YValidator
|
||||
from ._x import XValidator
|
||||
from ._row import RowValidator
|
||||
from ._column import ColumnValidator
|
||||
else:
|
||||
from _plotly_utils.importers import relative_import
|
||||
|
||||
__all__, __getattr__, __dir__ = relative_import(
|
||||
__name__,
|
||||
[],
|
||||
[
|
||||
"._y.YValidator",
|
||||
"._x.XValidator",
|
||||
"._row.RowValidator",
|
||||
"._column.ColumnValidator",
|
||||
],
|
||||
)
|
@ -0,0 +1,14 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class ColumnValidator(_plotly_utils.basevalidators.IntegerValidator):
|
||||
def __init__(
|
||||
self, plotly_name="column", parent_name="layout.smith.domain", **kwargs
|
||||
):
|
||||
super(ColumnValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
min=kwargs.pop("min", 0),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,12 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class RowValidator(_plotly_utils.basevalidators.IntegerValidator):
|
||||
def __init__(self, plotly_name="row", parent_name="layout.smith.domain", **kwargs):
|
||||
super(RowValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
min=kwargs.pop("min", 0),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,18 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class XValidator(_plotly_utils.basevalidators.InfoArrayValidator):
|
||||
def __init__(self, plotly_name="x", parent_name="layout.smith.domain", **kwargs):
|
||||
super(XValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
items=kwargs.pop(
|
||||
"items",
|
||||
[
|
||||
{"editType": "plot", "max": 1, "min": 0, "valType": "number"},
|
||||
{"editType": "plot", "max": 1, "min": 0, "valType": "number"},
|
||||
],
|
||||
),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,18 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class YValidator(_plotly_utils.basevalidators.InfoArrayValidator):
|
||||
def __init__(self, plotly_name="y", parent_name="layout.smith.domain", **kwargs):
|
||||
super(YValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
items=kwargs.pop(
|
||||
"items",
|
||||
[
|
||||
{"editType": "plot", "max": 1, "min": 0, "valType": "number"},
|
||||
{"editType": "plot", "max": 1, "min": 0, "valType": "number"},
|
||||
],
|
||||
),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,61 @@
|
||||
import sys
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
if sys.version_info < (3, 7) or TYPE_CHECKING:
|
||||
from ._visible import VisibleValidator
|
||||
from ._tickwidth import TickwidthValidator
|
||||
from ._tickvalssrc import TickvalssrcValidator
|
||||
from ._tickvals import TickvalsValidator
|
||||
from ._ticksuffix import TicksuffixValidator
|
||||
from ._ticks import TicksValidator
|
||||
from ._tickprefix import TickprefixValidator
|
||||
from ._ticklen import TicklenValidator
|
||||
from ._tickformat import TickformatValidator
|
||||
from ._tickfont import TickfontValidator
|
||||
from ._tickcolor import TickcolorValidator
|
||||
from ._showticksuffix import ShowticksuffixValidator
|
||||
from ._showtickprefix import ShowtickprefixValidator
|
||||
from ._showticklabels import ShowticklabelsValidator
|
||||
from ._showline import ShowlineValidator
|
||||
from ._showgrid import ShowgridValidator
|
||||
from ._linewidth import LinewidthValidator
|
||||
from ._linecolor import LinecolorValidator
|
||||
from ._layer import LayerValidator
|
||||
from ._hoverformat import HoverformatValidator
|
||||
from ._gridwidth import GridwidthValidator
|
||||
from ._griddash import GriddashValidator
|
||||
from ._gridcolor import GridcolorValidator
|
||||
from ._color import ColorValidator
|
||||
else:
|
||||
from _plotly_utils.importers import relative_import
|
||||
|
||||
__all__, __getattr__, __dir__ = relative_import(
|
||||
__name__,
|
||||
[],
|
||||
[
|
||||
"._visible.VisibleValidator",
|
||||
"._tickwidth.TickwidthValidator",
|
||||
"._tickvalssrc.TickvalssrcValidator",
|
||||
"._tickvals.TickvalsValidator",
|
||||
"._ticksuffix.TicksuffixValidator",
|
||||
"._ticks.TicksValidator",
|
||||
"._tickprefix.TickprefixValidator",
|
||||
"._ticklen.TicklenValidator",
|
||||
"._tickformat.TickformatValidator",
|
||||
"._tickfont.TickfontValidator",
|
||||
"._tickcolor.TickcolorValidator",
|
||||
"._showticksuffix.ShowticksuffixValidator",
|
||||
"._showtickprefix.ShowtickprefixValidator",
|
||||
"._showticklabels.ShowticklabelsValidator",
|
||||
"._showline.ShowlineValidator",
|
||||
"._showgrid.ShowgridValidator",
|
||||
"._linewidth.LinewidthValidator",
|
||||
"._linecolor.LinecolorValidator",
|
||||
"._layer.LayerValidator",
|
||||
"._hoverformat.HoverformatValidator",
|
||||
"._gridwidth.GridwidthValidator",
|
||||
"._griddash.GriddashValidator",
|
||||
"._gridcolor.GridcolorValidator",
|
||||
"._color.ColorValidator",
|
||||
],
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class ColorValidator(_plotly_utils.basevalidators.ColorValidator):
|
||||
def __init__(
|
||||
self, plotly_name="color", parent_name="layout.smith.imaginaryaxis", **kwargs
|
||||
):
|
||||
super(ColorValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,16 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class GridcolorValidator(_plotly_utils.basevalidators.ColorValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="gridcolor",
|
||||
parent_name="layout.smith.imaginaryaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(GridcolorValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,16 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class GriddashValidator(_plotly_utils.basevalidators.DashValidator):
|
||||
def __init__(
|
||||
self, plotly_name="griddash", parent_name="layout.smith.imaginaryaxis", **kwargs
|
||||
):
|
||||
super(GriddashValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
values=kwargs.pop(
|
||||
"values", ["solid", "dot", "dash", "longdash", "dashdot", "longdashdot"]
|
||||
),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,17 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class GridwidthValidator(_plotly_utils.basevalidators.NumberValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="gridwidth",
|
||||
parent_name="layout.smith.imaginaryaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(GridwidthValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
min=kwargs.pop("min", 0),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,16 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class HoverformatValidator(_plotly_utils.basevalidators.StringValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="hoverformat",
|
||||
parent_name="layout.smith.imaginaryaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(HoverformatValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,14 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class LayerValidator(_plotly_utils.basevalidators.EnumeratedValidator):
|
||||
def __init__(
|
||||
self, plotly_name="layer", parent_name="layout.smith.imaginaryaxis", **kwargs
|
||||
):
|
||||
super(LayerValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
values=kwargs.pop("values", ["above traces", "below traces"]),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,16 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class LinecolorValidator(_plotly_utils.basevalidators.ColorValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="linecolor",
|
||||
parent_name="layout.smith.imaginaryaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(LinecolorValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,17 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class LinewidthValidator(_plotly_utils.basevalidators.NumberValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="linewidth",
|
||||
parent_name="layout.smith.imaginaryaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(LinewidthValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
min=kwargs.pop("min", 0),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class ShowgridValidator(_plotly_utils.basevalidators.BooleanValidator):
|
||||
def __init__(
|
||||
self, plotly_name="showgrid", parent_name="layout.smith.imaginaryaxis", **kwargs
|
||||
):
|
||||
super(ShowgridValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class ShowlineValidator(_plotly_utils.basevalidators.BooleanValidator):
|
||||
def __init__(
|
||||
self, plotly_name="showline", parent_name="layout.smith.imaginaryaxis", **kwargs
|
||||
):
|
||||
super(ShowlineValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,16 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class ShowticklabelsValidator(_plotly_utils.basevalidators.BooleanValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="showticklabels",
|
||||
parent_name="layout.smith.imaginaryaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(ShowticklabelsValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,17 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class ShowtickprefixValidator(_plotly_utils.basevalidators.EnumeratedValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="showtickprefix",
|
||||
parent_name="layout.smith.imaginaryaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(ShowtickprefixValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
values=kwargs.pop("values", ["all", "first", "last", "none"]),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,17 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class ShowticksuffixValidator(_plotly_utils.basevalidators.EnumeratedValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="showticksuffix",
|
||||
parent_name="layout.smith.imaginaryaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(ShowticksuffixValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
values=kwargs.pop("values", ["all", "first", "last", "none"]),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,16 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TickcolorValidator(_plotly_utils.basevalidators.ColorValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="tickcolor",
|
||||
parent_name="layout.smith.imaginaryaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(TickcolorValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,39 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TickfontValidator(_plotly_utils.basevalidators.CompoundValidator):
|
||||
def __init__(
|
||||
self, plotly_name="tickfont", parent_name="layout.smith.imaginaryaxis", **kwargs
|
||||
):
|
||||
super(TickfontValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
data_class_str=kwargs.pop("data_class_str", "Tickfont"),
|
||||
data_docs=kwargs.pop(
|
||||
"data_docs",
|
||||
"""
|
||||
color
|
||||
|
||||
family
|
||||
HTML font family - the typeface that will be
|
||||
applied by the web browser. The web browser
|
||||
will only be able to apply a font if it is
|
||||
available on the system which it operates.
|
||||
Provide multiple font families, separated by
|
||||
commas, to indicate the preference in which to
|
||||
apply fonts if they aren't available on the
|
||||
system. The Chart Studio Cloud (at
|
||||
https://chart-studio.plotly.com or on-premise)
|
||||
generates images on a server, where only a
|
||||
select number of fonts are installed and
|
||||
supported. These include "Arial", "Balto",
|
||||
"Courier New", "Droid Sans",, "Droid Serif",
|
||||
"Droid Sans Mono", "Gravitas One", "Old
|
||||
Standard TT", "Open Sans", "Overpass", "PT Sans
|
||||
Narrow", "Raleway", "Times New Roman".
|
||||
size
|
||||
|
||||
""",
|
||||
),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,16 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TickformatValidator(_plotly_utils.basevalidators.StringValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="tickformat",
|
||||
parent_name="layout.smith.imaginaryaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(TickformatValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,14 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TicklenValidator(_plotly_utils.basevalidators.NumberValidator):
|
||||
def __init__(
|
||||
self, plotly_name="ticklen", parent_name="layout.smith.imaginaryaxis", **kwargs
|
||||
):
|
||||
super(TicklenValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
min=kwargs.pop("min", 0),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,16 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TickprefixValidator(_plotly_utils.basevalidators.StringValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="tickprefix",
|
||||
parent_name="layout.smith.imaginaryaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(TickprefixValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,14 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TicksValidator(_plotly_utils.basevalidators.EnumeratedValidator):
|
||||
def __init__(
|
||||
self, plotly_name="ticks", parent_name="layout.smith.imaginaryaxis", **kwargs
|
||||
):
|
||||
super(TicksValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "ticks"),
|
||||
values=kwargs.pop("values", ["outside", "inside", ""]),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,16 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TicksuffixValidator(_plotly_utils.basevalidators.StringValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="ticksuffix",
|
||||
parent_name="layout.smith.imaginaryaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(TicksuffixValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TickvalsValidator(_plotly_utils.basevalidators.DataArrayValidator):
|
||||
def __init__(
|
||||
self, plotly_name="tickvals", parent_name="layout.smith.imaginaryaxis", **kwargs
|
||||
):
|
||||
super(TickvalsValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,16 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TickvalssrcValidator(_plotly_utils.basevalidators.SrcValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="tickvalssrc",
|
||||
parent_name="layout.smith.imaginaryaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(TickvalssrcValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "none"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,17 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TickwidthValidator(_plotly_utils.basevalidators.NumberValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="tickwidth",
|
||||
parent_name="layout.smith.imaginaryaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(TickwidthValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
min=kwargs.pop("min", 0),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class VisibleValidator(_plotly_utils.basevalidators.BooleanValidator):
|
||||
def __init__(
|
||||
self, plotly_name="visible", parent_name="layout.smith.imaginaryaxis", **kwargs
|
||||
):
|
||||
super(VisibleValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,15 @@
|
||||
import sys
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
if sys.version_info < (3, 7) or TYPE_CHECKING:
|
||||
from ._size import SizeValidator
|
||||
from ._family import FamilyValidator
|
||||
from ._color import ColorValidator
|
||||
else:
|
||||
from _plotly_utils.importers import relative_import
|
||||
|
||||
__all__, __getattr__, __dir__ = relative_import(
|
||||
__name__,
|
||||
[],
|
||||
["._size.SizeValidator", "._family.FamilyValidator", "._color.ColorValidator"],
|
||||
)
|
@ -0,0 +1,16 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class ColorValidator(_plotly_utils.basevalidators.ColorValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="color",
|
||||
parent_name="layout.smith.imaginaryaxis.tickfont",
|
||||
**kwargs,
|
||||
):
|
||||
super(ColorValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,18 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class FamilyValidator(_plotly_utils.basevalidators.StringValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="family",
|
||||
parent_name="layout.smith.imaginaryaxis.tickfont",
|
||||
**kwargs,
|
||||
):
|
||||
super(FamilyValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
no_blank=kwargs.pop("no_blank", True),
|
||||
strict=kwargs.pop("strict", True),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,17 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class SizeValidator(_plotly_utils.basevalidators.NumberValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="size",
|
||||
parent_name="layout.smith.imaginaryaxis.tickfont",
|
||||
**kwargs,
|
||||
):
|
||||
super(SizeValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
min=kwargs.pop("min", 1),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,65 @@
|
||||
import sys
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
if sys.version_info < (3, 7) or TYPE_CHECKING:
|
||||
from ._visible import VisibleValidator
|
||||
from ._tickwidth import TickwidthValidator
|
||||
from ._tickvalssrc import TickvalssrcValidator
|
||||
from ._tickvals import TickvalsValidator
|
||||
from ._ticksuffix import TicksuffixValidator
|
||||
from ._ticks import TicksValidator
|
||||
from ._tickprefix import TickprefixValidator
|
||||
from ._ticklen import TicklenValidator
|
||||
from ._tickformat import TickformatValidator
|
||||
from ._tickfont import TickfontValidator
|
||||
from ._tickcolor import TickcolorValidator
|
||||
from ._tickangle import TickangleValidator
|
||||
from ._side import SideValidator
|
||||
from ._showticksuffix import ShowticksuffixValidator
|
||||
from ._showtickprefix import ShowtickprefixValidator
|
||||
from ._showticklabels import ShowticklabelsValidator
|
||||
from ._showline import ShowlineValidator
|
||||
from ._showgrid import ShowgridValidator
|
||||
from ._linewidth import LinewidthValidator
|
||||
from ._linecolor import LinecolorValidator
|
||||
from ._layer import LayerValidator
|
||||
from ._hoverformat import HoverformatValidator
|
||||
from ._gridwidth import GridwidthValidator
|
||||
from ._griddash import GriddashValidator
|
||||
from ._gridcolor import GridcolorValidator
|
||||
from ._color import ColorValidator
|
||||
else:
|
||||
from _plotly_utils.importers import relative_import
|
||||
|
||||
__all__, __getattr__, __dir__ = relative_import(
|
||||
__name__,
|
||||
[],
|
||||
[
|
||||
"._visible.VisibleValidator",
|
||||
"._tickwidth.TickwidthValidator",
|
||||
"._tickvalssrc.TickvalssrcValidator",
|
||||
"._tickvals.TickvalsValidator",
|
||||
"._ticksuffix.TicksuffixValidator",
|
||||
"._ticks.TicksValidator",
|
||||
"._tickprefix.TickprefixValidator",
|
||||
"._ticklen.TicklenValidator",
|
||||
"._tickformat.TickformatValidator",
|
||||
"._tickfont.TickfontValidator",
|
||||
"._tickcolor.TickcolorValidator",
|
||||
"._tickangle.TickangleValidator",
|
||||
"._side.SideValidator",
|
||||
"._showticksuffix.ShowticksuffixValidator",
|
||||
"._showtickprefix.ShowtickprefixValidator",
|
||||
"._showticklabels.ShowticklabelsValidator",
|
||||
"._showline.ShowlineValidator",
|
||||
"._showgrid.ShowgridValidator",
|
||||
"._linewidth.LinewidthValidator",
|
||||
"._linecolor.LinecolorValidator",
|
||||
"._layer.LayerValidator",
|
||||
"._hoverformat.HoverformatValidator",
|
||||
"._gridwidth.GridwidthValidator",
|
||||
"._griddash.GriddashValidator",
|
||||
"._gridcolor.GridcolorValidator",
|
||||
"._color.ColorValidator",
|
||||
],
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class ColorValidator(_plotly_utils.basevalidators.ColorValidator):
|
||||
def __init__(
|
||||
self, plotly_name="color", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(ColorValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class GridcolorValidator(_plotly_utils.basevalidators.ColorValidator):
|
||||
def __init__(
|
||||
self, plotly_name="gridcolor", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(GridcolorValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,16 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class GriddashValidator(_plotly_utils.basevalidators.DashValidator):
|
||||
def __init__(
|
||||
self, plotly_name="griddash", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(GriddashValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
values=kwargs.pop(
|
||||
"values", ["solid", "dot", "dash", "longdash", "dashdot", "longdashdot"]
|
||||
),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,14 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class GridwidthValidator(_plotly_utils.basevalidators.NumberValidator):
|
||||
def __init__(
|
||||
self, plotly_name="gridwidth", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(GridwidthValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
min=kwargs.pop("min", 0),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class HoverformatValidator(_plotly_utils.basevalidators.StringValidator):
|
||||
def __init__(
|
||||
self, plotly_name="hoverformat", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(HoverformatValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,14 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class LayerValidator(_plotly_utils.basevalidators.EnumeratedValidator):
|
||||
def __init__(
|
||||
self, plotly_name="layer", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(LayerValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
values=kwargs.pop("values", ["above traces", "below traces"]),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class LinecolorValidator(_plotly_utils.basevalidators.ColorValidator):
|
||||
def __init__(
|
||||
self, plotly_name="linecolor", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(LinecolorValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,14 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class LinewidthValidator(_plotly_utils.basevalidators.NumberValidator):
|
||||
def __init__(
|
||||
self, plotly_name="linewidth", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(LinewidthValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
min=kwargs.pop("min", 0),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class ShowgridValidator(_plotly_utils.basevalidators.BooleanValidator):
|
||||
def __init__(
|
||||
self, plotly_name="showgrid", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(ShowgridValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class ShowlineValidator(_plotly_utils.basevalidators.BooleanValidator):
|
||||
def __init__(
|
||||
self, plotly_name="showline", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(ShowlineValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,16 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class ShowticklabelsValidator(_plotly_utils.basevalidators.BooleanValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="showticklabels",
|
||||
parent_name="layout.smith.realaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(ShowticklabelsValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,17 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class ShowtickprefixValidator(_plotly_utils.basevalidators.EnumeratedValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="showtickprefix",
|
||||
parent_name="layout.smith.realaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(ShowtickprefixValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
values=kwargs.pop("values", ["all", "first", "last", "none"]),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,17 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class ShowticksuffixValidator(_plotly_utils.basevalidators.EnumeratedValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="showticksuffix",
|
||||
parent_name="layout.smith.realaxis",
|
||||
**kwargs,
|
||||
):
|
||||
super(ShowticksuffixValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
values=kwargs.pop("values", ["all", "first", "last", "none"]),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,14 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class SideValidator(_plotly_utils.basevalidators.EnumeratedValidator):
|
||||
def __init__(
|
||||
self, plotly_name="side", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(SideValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
values=kwargs.pop("values", ["top", "bottom"]),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TickangleValidator(_plotly_utils.basevalidators.AngleValidator):
|
||||
def __init__(
|
||||
self, plotly_name="tickangle", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(TickangleValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "ticks"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TickcolorValidator(_plotly_utils.basevalidators.ColorValidator):
|
||||
def __init__(
|
||||
self, plotly_name="tickcolor", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(TickcolorValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,39 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TickfontValidator(_plotly_utils.basevalidators.CompoundValidator):
|
||||
def __init__(
|
||||
self, plotly_name="tickfont", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(TickfontValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
data_class_str=kwargs.pop("data_class_str", "Tickfont"),
|
||||
data_docs=kwargs.pop(
|
||||
"data_docs",
|
||||
"""
|
||||
color
|
||||
|
||||
family
|
||||
HTML font family - the typeface that will be
|
||||
applied by the web browser. The web browser
|
||||
will only be able to apply a font if it is
|
||||
available on the system which it operates.
|
||||
Provide multiple font families, separated by
|
||||
commas, to indicate the preference in which to
|
||||
apply fonts if they aren't available on the
|
||||
system. The Chart Studio Cloud (at
|
||||
https://chart-studio.plotly.com or on-premise)
|
||||
generates images on a server, where only a
|
||||
select number of fonts are installed and
|
||||
supported. These include "Arial", "Balto",
|
||||
"Courier New", "Droid Sans",, "Droid Serif",
|
||||
"Droid Sans Mono", "Gravitas One", "Old
|
||||
Standard TT", "Open Sans", "Overpass", "PT Sans
|
||||
Narrow", "Raleway", "Times New Roman".
|
||||
size
|
||||
|
||||
""",
|
||||
),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TickformatValidator(_plotly_utils.basevalidators.StringValidator):
|
||||
def __init__(
|
||||
self, plotly_name="tickformat", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(TickformatValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,14 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TicklenValidator(_plotly_utils.basevalidators.NumberValidator):
|
||||
def __init__(
|
||||
self, plotly_name="ticklen", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(TicklenValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
min=kwargs.pop("min", 0),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TickprefixValidator(_plotly_utils.basevalidators.StringValidator):
|
||||
def __init__(
|
||||
self, plotly_name="tickprefix", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(TickprefixValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,14 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TicksValidator(_plotly_utils.basevalidators.EnumeratedValidator):
|
||||
def __init__(
|
||||
self, plotly_name="ticks", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(TicksValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "ticks"),
|
||||
values=kwargs.pop("values", ["top", "bottom", ""]),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TicksuffixValidator(_plotly_utils.basevalidators.StringValidator):
|
||||
def __init__(
|
||||
self, plotly_name="ticksuffix", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(TicksuffixValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TickvalsValidator(_plotly_utils.basevalidators.DataArrayValidator):
|
||||
def __init__(
|
||||
self, plotly_name="tickvals", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(TickvalsValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TickvalssrcValidator(_plotly_utils.basevalidators.SrcValidator):
|
||||
def __init__(
|
||||
self, plotly_name="tickvalssrc", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(TickvalssrcValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "none"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,14 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class TickwidthValidator(_plotly_utils.basevalidators.NumberValidator):
|
||||
def __init__(
|
||||
self, plotly_name="tickwidth", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(TickwidthValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
min=kwargs.pop("min", 0),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class VisibleValidator(_plotly_utils.basevalidators.BooleanValidator):
|
||||
def __init__(
|
||||
self, plotly_name="visible", parent_name="layout.smith.realaxis", **kwargs
|
||||
):
|
||||
super(VisibleValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,15 @@
|
||||
import sys
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
if sys.version_info < (3, 7) or TYPE_CHECKING:
|
||||
from ._size import SizeValidator
|
||||
from ._family import FamilyValidator
|
||||
from ._color import ColorValidator
|
||||
else:
|
||||
from _plotly_utils.importers import relative_import
|
||||
|
||||
__all__, __getattr__, __dir__ = relative_import(
|
||||
__name__,
|
||||
[],
|
||||
["._size.SizeValidator", "._family.FamilyValidator", "._color.ColorValidator"],
|
||||
)
|
@ -0,0 +1,16 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class ColorValidator(_plotly_utils.basevalidators.ColorValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="color",
|
||||
parent_name="layout.smith.realaxis.tickfont",
|
||||
**kwargs,
|
||||
):
|
||||
super(ColorValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,18 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class FamilyValidator(_plotly_utils.basevalidators.StringValidator):
|
||||
def __init__(
|
||||
self,
|
||||
plotly_name="family",
|
||||
parent_name="layout.smith.realaxis.tickfont",
|
||||
**kwargs,
|
||||
):
|
||||
super(FamilyValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
no_blank=kwargs.pop("no_blank", True),
|
||||
strict=kwargs.pop("strict", True),
|
||||
**kwargs,
|
||||
)
|
@ -0,0 +1,14 @@
|
||||
import _plotly_utils.basevalidators
|
||||
|
||||
|
||||
class SizeValidator(_plotly_utils.basevalidators.NumberValidator):
|
||||
def __init__(
|
||||
self, plotly_name="size", parent_name="layout.smith.realaxis.tickfont", **kwargs
|
||||
):
|
||||
super(SizeValidator, self).__init__(
|
||||
plotly_name=plotly_name,
|
||||
parent_name=parent_name,
|
||||
edit_type=kwargs.pop("edit_type", "plot"),
|
||||
min=kwargs.pop("min", 1),
|
||||
**kwargs,
|
||||
)
|
Reference in New Issue
Block a user