Tried a different approach, works great :)
if(charts[key]==undefined){
//create chart....
charts[key]=chart;
}else{
chart = charts[key];
chart.options.data[0].dataPoints=points;
}
chart.render();
-
This reply was modified 10 years, 6 months ago by Daniel Silva.
-
This reply was modified 10 years, 6 months ago by Daniel Silva.