score:1

Accepted answer

this issue is a bug in highcharts versions above 7.0.3. it is reported here: https://github.com/highcharts/highcharts/issues/11738.

1) the first workaround is to use version 7.0.3:

2) the second workaround is to use setdata() instead of update()

$('#update').click(function() {
  chart.series[0].setdata([
    ["a", 10],
    ["b", 2000],
    ["c", 150]
  ]);
});

Related Query

More Query from same tag