diff --git a/reflex/components/recharts/general.py b/reflex/components/recharts/general.py index 73eeef6b1..9ee2c8713 100644 --- a/reflex/components/recharts/general.py +++ b/reflex/components/recharts/general.py @@ -183,7 +183,7 @@ class GraphingTooltip(Recharts): # The coordinate of tooltip which is usually calculated internally. Default: {"x": 0, "y": 0} coordinate: Var[Dict[str, Any]] - # If set false, animation of tooltip will be disabled. Default: True in CSR, and False in SSR + # If set false, animation of tooltip will be disabled. Default: True is_animation_active: Var[bool] # Specifies the duration of animation, the unit of this option is ms. Default: 1500 diff --git a/reflex/components/recharts/general.pyi b/reflex/components/recharts/general.pyi index cfd6c510c..9d2ce5e10 100644 --- a/reflex/components/recharts/general.pyi +++ b/reflex/components/recharts/general.pyi @@ -314,7 +314,7 @@ class GraphingTooltip(Recharts): active: If set true, the tooltip is displayed. If set false, the tooltip is hidden, usually calculated internally. Default: False position: If this field is set, the tooltip position will be fixed and will not move anymore. coordinate: The coordinate of tooltip which is usually calculated internally. Default: {"x": 0, "y": 0} - is_animation_active: If set false, animation of tooltip will be disabled. Default: True in CSR, and False in SSR + is_animation_active: If set false, animation of tooltip will be disabled. Default: True animation_duration: Specifies the duration of animation, the unit of this option is ms. Default: 1500 animation_easing: The type of easing function. Default: "ease" style: The style of the component.