You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it ok do animation in DrawRect?
And How to synch it with dot animation if dots does scales up animation only when line reaches to that particular point?
The text was updated successfully, but these errors were encountered:
Hey @kidsid49, this particular feature has been requested quite a few times.
Unfortunately, we don't plan on supported it going forward.
I can't speak to how you would animate it, but core animation is a good start.
I wouldn't put it into drawRect, but instead tie it into the setState flow, passing the state and callback all the way down to the linesView subview (where the animation can take place).
@kidsid49 you should animate in the setState: function - it definitely shouldn't be done in drawRect since that can (and will) be called any number of times.
I wants to animate the LineChartView progression.
Eg. The stroke end of CAShapeLayer that is involved.
I did it by doing it in drawRect of JBLineChartView.m
Is it ok do animation in DrawRect?
And How to synch it with dot animation if dots does scales up animation only when line reaches to that particular point?
The text was updated successfully, but these errors were encountered: