Charts - Animation
Animate charts for a better look and feel.
Some elements of charts are animated, such as the bars in a bar chart or the slices in a pie chart.
Charts use CSS animations when possible, but some animations can't be done using CSS only. In those cases, JavaScript is used to animate elements.
The animations of elements that are animated using CSS can be customized by overriding the CSS classes:
When it isn't possible to leverage CSS animations, the default components are animated using custom hooks.
If you want to use the default animations in custom components, you can use these hooks.
They are available for each element that is animated using JavaScript and are prefixed with useAnimate
.
The following hooks are available:
useAnimateArea
;useAnimateBar
;useAnimateBarLabel
;useAnimateLine
;useAnimatePieArc
;useAnimatePieArcLabel
.
To customize the animation, you can also use the useAnimate(props, params)
hook.
It returns a ref and props to pass to the animated element.
Each time the props
params get updated, the hook creates an interpolation from the previous value to the next one.
On each animation frame, it calls this interpolator to get the intermediate state and applies the result to the animated element.
The attribute update is imperative to bypass the React lifecycle, thus improving performance.
To customize the animation, the params
allows you to define the following properties:
skip
: Iftrue
, apply the new value immediately;ref
: A ref to merge with the ref returned from this hook;initialProps
: The props used to generate the animation of component creation; if not provided, there will be no initial animation;createInterpolator
: Create an interpolation function from the last to the next props;transformProps
: Optionally transform interpolated props to another format;applyProps
: Apply transformed props to the element.
A more detailed explanation is available in the hook's JSDoc.
In the example below, labels are positioned above the bars they refer to and are animated using the useAnimation
hook:
Alternatively, you can use your own animation library to create custom animations, such as React Spring:
Note that sometimes JavaScript animation libraries cause performance issues, especially when rendering many data points or when interactions are enabled (e.g., zoom, highlight).