VChart icon indicating copy to clipboard operation
VChart copied to clipboard

[Feature] state animation support config

Open xile611 opened this issue 7 months ago • 0 comments

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;
  }
}

xile611 avatar Jul 19 '24 09:07 xile611