Is there a way to turn off animation from JQuery/JS? I noticed that I can turn it off in my json by adding
"animation":"0"
to chart. But, I'd like to turn animation from javascript or JQuery off before I do a refresh, so I'm trying something like:
function updateChart()
{
$("#chartContainer").attrFusionCharts({"animation":"0"});
$("#chartContainer").updateFusionCharts({dataSource: 'data.json', dataFormat: "jsonurl"});
}
but it still is animating. Any thoughts?
Thanks!