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
@@ -37,9 +37,6 @@ class ChartBase(RechartsCharts):
37
37
# The customized event handler of mouseenter on the component in this chart
38
38
on_mouse_enter: EventHandler[no_args_event_spec]
39
39
40
-
# The customized event handler of mousemove on the component in this chart
41
-
on_mouse_move: EventHandler[no_args_event_spec]
42
-
43
40
# The customized event handler of mouseleave on the component in this chart
44
41
on_mouse_leave: EventHandler[no_args_event_spec]
45
42
@@ -122,6 +119,9 @@ class CategoricalChartBase(ChartBase):
122
119
# The type of offset function used to generate the lower and upper values in the series array. The four types are built-in offsets in d3-shape. 'expand' | 'none' | 'wiggle' | 'silhouette'
123
120
stack_offset: Var[LiteralStackOffset]
124
121
122
+
# The customized event handler of mousemove on the component in this chart
123
+
on_mouse_move: EventHandler[no_args_event_spec]
124
+
125
125
126
126
classAreaChart(CategoricalChartBase):
127
127
"""An Area chart component in Recharts."""
@@ -447,6 +447,9 @@ class FunnelChart(ChartBase):
447
447
# The stroke color of each bar. String | Object
448
448
stroke: Var[str|Color]
449
449
450
+
# The customized event handler of mousemove on the component in this chart
0 commit comments