score:3

Accepted answer

Well, I added time info to the axis and tooltip see http://jsfiddle.net/gATfu/
It looks like your timestamps are from 10pm but the axis labels are showing 0am ... thats why the points look about one day shifted.

score:1

The global HighCharts option for UTC worked quite good. I cannot yet vote that one up :(

I also figured out that HighCharts moves my bar chart according to the exact time stamp as described by dgw. I.e. a date from the 1st of May can be shown in the near of 30th of April depending on the scaling. That confused me because there were two 30th of April entries and no 1st of May.

score:2

it's because of the timezone. You should convert you date in UTC format with Date.UTC(..). It will work

score:23

Just found your question... I think the solution to your problem is to set up the UTC timezone option to false. This will set up the chart timezone to be local and not UTC.

Highcharts.setOptions({
    global : {
        useUTC : false
    }
});

See: http://api.highcharts.com/highcharts#global.useUTC


Related Query

More Query from same tag