VChart
VChart copied to clipboard
[Feature] state animation support config
What problem does this feature solve?
状态动画支持独立的动画参数配置,主要是:
const DefaultStateAnimateConfig: IAnimateConfig = {
duration: 200,
easing: 'cubicOut'
};
What does the proposed API look like?
{
animationUpdate?: {
duration?: number;
easing?: EasingType;
}
}