Is it possible to change bar values in an already generated Graph dynamically and animate them (like css-transitions on height/width) without redrawing the whole chart?
change bar values without redrawing the whole chart
95 views Asked by Michael At
1
No. But don't worry - canvas and SVG are fast at drawing.
You can animate the change to a new set of values with the canvas Bar chart by giving the grow effect a new dataset - There's an example in the demos dir in the download called demos/effects-bar-grow.html , the source code of which is this:
Of course animation on canvas requires redrawing the whole chart repeatedly many times a second.