angular-highcharts
angular-highcharts copied to clipboard
Redraw data
I want to redraw highchart data when data change? Please help me!
If you have a reference to the chart instance you should be able update the data like so: chart.series[0].setData(data, true); the second parameter of this method is whether or not the chart should be refreshed.