如何使用highcharts库在x轴上显示12AM和12PM

时间:2015-08-18 08:08:42

标签: javascript highcharts

我有一个包含一些数据的图表,我在x轴上显示基于一天的小时数,间隔为2小时。 代码是同伴:

startOnTick: true,
endOnTick: true,
showLastLabel: true,
type: 'datetime',
tickInterval: 3600 * 2000,
min: minDate,
max: maxDate,
dateTimeLabelFormats: {
    hour: '%I %p',
     minute: '%I:%M %p'
}

minDate表示第一天的开始时间和maxDatemean上一次的最后一次。

现在我想在地点日期上午12点和下午12点显示,因为在一周的情况下,日期不可重复使用。

enter image description here

1 个答案:

答案 0 :(得分:1)

我找到了这个答案:

 labels: {
    enabled: true,
    formatter: function (){
              return Highcharts.dateFormat('%I %p',this.value);
    },
}