score:2

Accepted answer

Highcharts wants time values as timestamps in milliseconds instead of Date objects:

What format does the highcharts js library accept for dates?
Highcharts X-Axis time from JS date

Change how you generate your x values, and the zooming magically starts working again:

var x = (new Date()).getTime() + i * frequency,

...

var x = dataSet[dataSet.length - 1].x + frequency,

https://jsfiddle.net/74zdsvbo/


Related Query