I am using highcharts and I have no problem reloading data for single series charts. However, I cannot seem to update multiple series charts. Anytime I try, It just renders blank. Here is my sample code:
for (i=0; i < response_data.line_data.length; i++) {
line_chart.series[i].setData(response_data.line_data[i], false);
}
line_chart.redraw();
I know the data is correct because I used the same function to create the chart in the first place.
Help is much appreciated. Thanks!
Paul