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