You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The label of axis, which appears next to the axis.
79
-
label: Var[str|int|Component|dict[str, Any]]
78
+
label: Var[str|int|dict[str, Any]]
80
79
81
80
# If 'auto' set, the scale function is decided by the type of chart, and the props type. 'auto' | 'linear' | 'pow' | 'sqrt' | 'log' | 'identity' | 'time' | 'band' | 'point' | 'ordinal' | 'quantile' | 'quantize' | 'utc' | 'sequential' | 'threshold'. Default: "auto"
82
81
scale: Var[LiteralScale]
@@ -91,7 +90,7 @@ class Axis(Recharts):
91
90
ticks: Var[Sequence[str|int]]
92
91
93
92
# If set false, no ticks will be drawn.
94
-
tick: Var[bool|dict|Component]
93
+
tick: Var[bool|dict]
95
94
96
95
# The count of axis ticks. Not used if 'type' is 'category'. Default: 5
97
96
tick_count: Var[int]
@@ -278,7 +277,7 @@ class Cartesian(Recharts):
278
277
legend_type: Var[LiteralLegendType]
279
278
280
279
# If false set, labels will not be drawn. If true set, labels will be drawn which have the props calculated internally. Default: False
281
-
label: Var[bool|dict[str, Any]|Component]
280
+
label: Var[bool|dict[str, Any]]
282
281
283
282
# If set false, animation of bar will be disabled. Default: True
284
283
is_animation_active: Var[bool]
@@ -657,7 +656,7 @@ class Reference(Recharts):
657
656
if_overflow: Var[LiteralIfOverflow]
658
657
659
658
# If set a string or a number, default label will be drawn, and the option is content.
660
-
label: Var[str|int|Component]
659
+
label: Var[str|int]
661
660
662
661
# If set true, the line will be rendered in front of bars in BarChart, etc. Default: False
663
662
is_front: Var[bool]
@@ -848,7 +847,7 @@ class CartesianAxis(Grid):
848
847
axis_line: Var[bool|dict]
849
848
850
849
# If set false, no ticks will be drawn.
851
-
tick: Var[bool|dict|Component]
850
+
tick: Var[bool|dict]
852
851
853
852
# If set false, no axis tick lines will be drawn. If set a object, the option is the configuration of tick lines. Default: True
854
853
tick_line: Var[bool]
@@ -860,7 +859,7 @@ class CartesianAxis(Grid):
860
859
interval: Var[LiteralInterval]
861
860
862
861
# If set a string or a number, default label will be drawn, and the option is content.
863
-
label: Var[str|int|Component]
862
+
label: Var[str|int]
864
863
865
864
# If set true, flips ticks around the axis line, displaying the labels inside the chart instead of outside. Default: False
0 commit comments