ralberto Report post Posted January 23, 2008 Hi all.. I'm trying to update some FusionCharts values in real-time. Using method setDataXML, chart reloads almost without any flick, but using setDataURL chart flick is notorious!! Am I missing something? Is there a way to animate only the changing values? Ex: We have a chart to display, say: "number of clients inside store / zone". We are polling a datasource to update that number every 1 min. I would like to see only the bars where values changed going up and down (animated), without redrawing all the bars! Is that possible? Code snippet! -------------- var chart1 = new FusionCharts("../fusion/charts/MSColumn3DLineDY.swf", "ChartId", "500", "300", "0", "1"); chart1.setDataURL("Col3DLineDY.xml"); chart1.render("somediv"); //Update chart with new values after five seconds. setTimeout( function() { chart1.setDataXML(IncCol3DLineDY.xml); }, 5000); -------------- Thanks, Rui Share this post Link to post Share on other sites
FusionCharts Support Report post Posted January 23, 2008 hi, We are afraid, this feature is not yet supported. Share this post Link to post Share on other sites
Pallav Report post Posted January 24, 2008 An alternate would be to use the real-time charts from FusionGadgets suite which support incremental updates. Share this post Link to post Share on other sites
deborah Report post Posted July 2, 2009 (edited) I would like to see this feature too. It looks like a mistake when only one value changes dynamically and every bar moves. We are eliminating the animation from the chart entirely because of it, even though it's one of the coolest features when the data justifies it. Edited July 2, 2009 by Guest Share this post Link to post Share on other sites
Guest Rajroop Report post Posted July 3, 2009 Your suggestions are very important to us. We have made a note of this Share this post Link to post Share on other sites