default props comment for ZAxis (#4112)
This commit is contained in:
parent
4843081089
commit
c3b7caaf13
@ -172,7 +172,10 @@ class ZAxis(Recharts):
|
|||||||
# The key of data displayed in the axis.
|
# The key of data displayed in the axis.
|
||||||
data_key: Var[Union[str, int]]
|
data_key: Var[Union[str, int]]
|
||||||
|
|
||||||
# The range of axis.
|
# The unique id of z-axis. Default: 0
|
||||||
|
z_axis_id: Var[Union[str, int]]
|
||||||
|
|
||||||
|
# The range of axis. Default: [10, 10]
|
||||||
range: Var[List[int]]
|
range: Var[List[int]]
|
||||||
|
|
||||||
# The unit of data displayed in the axis. This option will be used to represent an index unit in a scatter chart.
|
# The unit of data displayed in the axis. This option will be used to represent an index unit in a scatter chart.
|
||||||
@ -181,7 +184,7 @@ class ZAxis(Recharts):
|
|||||||
# The name of data displayed in the axis. This option will be used to represent an index in a scatter chart.
|
# The name of data displayed in the axis. This option will be used to represent an index in a scatter chart.
|
||||||
name: Var[Union[str, int]]
|
name: Var[Union[str, int]]
|
||||||
|
|
||||||
# If 'auto' set, the scale function is decided by the type of chart, and the props type.
|
# If 'auto' set, the scale function is decided by the type of chart, and the props type. Default: "auto"
|
||||||
scale: Var[LiteralScale]
|
scale: Var[LiteralScale]
|
||||||
|
|
||||||
|
|
||||||
|
@ -510,6 +510,7 @@ class ZAxis(Recharts):
|
|||||||
cls,
|
cls,
|
||||||
*children,
|
*children,
|
||||||
data_key: Optional[Union[Var[Union[int, str]], int, str]] = None,
|
data_key: Optional[Union[Var[Union[int, str]], int, str]] = None,
|
||||||
|
z_axis_id: Optional[Union[Var[Union[int, str]], int, str]] = None,
|
||||||
range: Optional[Union[List[int], Var[List[int]]]] = None,
|
range: Optional[Union[List[int], Var[List[int]]]] = None,
|
||||||
unit: Optional[Union[Var[Union[int, str]], int, str]] = None,
|
unit: Optional[Union[Var[Union[int, str]], int, str]] = None,
|
||||||
name: Optional[Union[Var[Union[int, str]], int, str]] = None,
|
name: Optional[Union[Var[Union[int, str]], int, str]] = None,
|
||||||
@ -601,10 +602,11 @@ class ZAxis(Recharts):
|
|||||||
Args:
|
Args:
|
||||||
*children: The children of the component.
|
*children: The children of the component.
|
||||||
data_key: The key of data displayed in the axis.
|
data_key: The key of data displayed in the axis.
|
||||||
range: The range of axis.
|
z_axis_id: The unique id of z-axis. Default: 0
|
||||||
|
range: The range of axis. Default: [10, 10]
|
||||||
unit: The unit of data displayed in the axis. This option will be used to represent an index unit in a scatter chart.
|
unit: The unit of data displayed in the axis. This option will be used to represent an index unit in a scatter chart.
|
||||||
name: The name of data displayed in the axis. This option will be used to represent an index in a scatter chart.
|
name: The name of data displayed in the axis. This option will be used to represent an index in a scatter chart.
|
||||||
scale: If 'auto' set, the scale function is decided by the type of chart, and the props type.
|
scale: If 'auto' set, the scale function is decided by the type of chart, and the props type. Default: "auto"
|
||||||
style: The style of the component.
|
style: The style of the component.
|
||||||
key: A unique key for the component.
|
key: A unique key for the component.
|
||||||
id: The id for the component.
|
id: The id for the component.
|
||||||
|
Loading…
Reference in New Issue
Block a user