Description
What problem does this feature solve?
frame by frame seeking capabilities in chart animations
What does the proposed API look like?
I am trying to integrate echarts with remotion, which is a react library for creating programmatic videos. I wanted to create an echart animation inside the video, remotion provides you with a useCurrentFrame
hook that gives the current frame and updates whenever the frame changes. Using this frame number you can then control the state of the animation. So it can only integrate with libraries that have frame by frame control of animation or some sort of seeking mechanism
For example gsap have a seek
method to jump to a particular state of the animation, and using this it can be used with remotion
Is there any similar method available or is possible in echarts, so chart animation can be seeked programmatically ?