Make domain props work for y_axis
(#3652)
This commit is contained in:
parent
4f9a75b390
commit
7ba61ced14
@ -152,6 +152,9 @@ class YAxis(Axis):
|
|||||||
# The id of y-axis which is corresponding to the data.
|
# The id of y-axis which is corresponding to the data.
|
||||||
y_axis_id: Var[Union[str, int]]
|
y_axis_id: Var[Union[str, int]]
|
||||||
|
|
||||||
|
# The range of the axis. Work best in conjuction with allow_data_overflow.
|
||||||
|
domain: Var[List]
|
||||||
|
|
||||||
|
|
||||||
class ZAxis(Recharts):
|
class ZAxis(Recharts):
|
||||||
"""A ZAxis component in Recharts."""
|
"""A ZAxis component in Recharts."""
|
||||||
|
@ -366,6 +366,7 @@ class YAxis(Axis):
|
|||||||
Union[Var[Literal["left", "right"]], Literal["left", "right"]]
|
Union[Var[Literal["left", "right"]], Literal["left", "right"]]
|
||||||
] = None,
|
] = None,
|
||||||
y_axis_id: Optional[Union[Var[Union[int, str]], str, int]] = None,
|
y_axis_id: Optional[Union[Var[Union[int, str]], str, int]] = None,
|
||||||
|
domain: Optional[Union[Var[List], List]] = None,
|
||||||
data_key: Optional[Union[Var[Union[int, str]], str, int]] = None,
|
data_key: Optional[Union[Var[Union[int, str]], str, int]] = None,
|
||||||
hide: Optional[Union[Var[bool], bool]] = None,
|
hide: Optional[Union[Var[bool], bool]] = None,
|
||||||
width: Optional[Union[Var[Union[int, str]], str, int]] = None,
|
width: Optional[Union[Var[Union[int, str]], str, int]] = None,
|
||||||
@ -493,6 +494,7 @@ class YAxis(Axis):
|
|||||||
*children: The children of the component.
|
*children: The children of the component.
|
||||||
orientation: The orientation of axis 'left' | 'right'
|
orientation: The orientation of axis 'left' | 'right'
|
||||||
y_axis_id: The id of y-axis which is corresponding to the data.
|
y_axis_id: The id of y-axis which is corresponding to the data.
|
||||||
|
domain: The range of the axis. Work best in conjuction with allow_data_overflow.
|
||||||
data_key: The key of data displayed in the axis.
|
data_key: The key of data displayed in the axis.
|
||||||
hide: If set true, the axis do not display in the chart.
|
hide: If set true, the axis do not display in the chart.
|
||||||
width: The width of axis which is usually calculated internally.
|
width: The width of axis which is usually calculated internally.
|
||||||
|
Loading…
Reference in New Issue
Block a user