I am not much aware of the Highcharts
I need to show time as "9:00AM" on xAxis on highchart currently its showing "00:00".. I know I am missing something very obvious here
http://jsfiddle.net/r6emu/2643/
xAxis: {
//startOfWeek: 1,
type: 'datetime',
dateTimeLabelFormats: {
hour: '%H:%M',
},
labels: {
formatter: function () {
console.debug(this.value)
return Highcharts.dateFormat( '%H:%M',(this.value));
}
}
},