I\'m trying to update a Highchart series by generating a new array with the current data from the database. But for some reason I can only find info about going through the
To update a chart I usually do this:
chart.series[0].update({ pointStart: newSeries[0].pointStart, data: newSeries[0].data }, true); //true / false to redraw
Try calling redraw after the update.