我对x轴使用以下内容:
xAxis: {
type: 'datetime',
tickInterval: 3600 * 1000, // one hour
tickWidth: 0,
gridLineWidth: 1,
gridLineColor: '<?php echo($gridlinecolor); ?>',
labels: {
align: 'center',
x: -3,
y: 20,
formatter: function() {
return Highcharts.dateFormat('%d-%m', this.value) + ' / ' + Highcharts.dateFormat('%l%p', this.value);
}
}
}
这给了我13-02 / 4PM之类的东西。
我希望有一个新的行像 13-02 4PM
我怎样才能做到这一点?
谢谢,
约翰。