score:2

Accepted answer

this might be a time zone issue
highcharts by default assumes timestamps are supplied in utc
you may try to using

    highcharts.setoptions({
    global: {
        useutc: false
    }
});

this would make highcharts display data in your browsers timezone


Related Query

More Query from same tag