From b99640885d05de966f51be411611a384c984eba9 Mon Sep 17 00:00:00 2001 From: carlosabadia Date: Thu, 10 Oct 2024 15:21:21 +0200 Subject: [PATCH] update --- reflex/components/recharts/polar.py | 2 +- reflex/components/recharts/polar.pyi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/reflex/components/recharts/polar.py b/reflex/components/recharts/polar.py index 1781400d7..09e4b51d4 100644 --- a/reflex/components/recharts/polar.py +++ b/reflex/components/recharts/polar.py @@ -162,7 +162,7 @@ class RadialBar(Recharts): # If false set, background sector will not be drawn. Default: False background: Var[Union[bool, Dict[str, Any]]] - # If set false, animation of radial bars will be disabled. By default true in CSR, and false in SSR. Default: True in CSR, and False in SSR + # If set false, animation of radial bars will be disabled. Default: True is_animation_active: Var[bool] # Specifies when the animation should begin, the unit of this option is ms. Default: 0 diff --git a/reflex/components/recharts/polar.pyi b/reflex/components/recharts/polar.pyi index 99a2979aa..e1c6cfc92 100644 --- a/reflex/components/recharts/polar.pyi +++ b/reflex/components/recharts/polar.pyi @@ -315,7 +315,7 @@ class RadialBar(Recharts): legend_type: The type of icon in legend. If set to 'none', no legend item will be rendered. Default: "rect" label: If false set, labels will not be drawn. If true set, labels will be drawn which have the props calculated internally. Default: False background: If false set, background sector will not be drawn. Default: False - is_animation_active: If set false, animation of radial bars will be disabled. By default true in CSR, and false in SSR. Default: True in CSR, and False in SSR + is_animation_active: If set false, animation of radial bars will be disabled. Default: True animation_begin: Specifies when the animation should begin, the unit of this option is ms. Default: 0 animation_duration: Specifies the duration of animation, the unit of this option is ms. Default 1500 animation_easing: The type of easing function. 'ease' | 'ease-in' | 'ease-out' | 'ease-in-out' | 'linear'. Default: "ease"