score:16

Accepted answer

first of all, remove the 'categories' property on xaxis, this has no meaning on a datetime axis. note that datetime axes are based on milliseconds, so an interval of one hour is expressed as 3600 * 1000. see api highcharts, tickinterval

use this config for the xaxis.

xaxis: {
        type: "datetime",    
        datetimelabelformats: {
            day: '%h'
        },
        tickinterval: 3600 * 1000
}, 

see here for a working demo on js bin.

score:3

you should use tickinterval with value: 3600 * 1000


Related Query

More Query from same tag