0
我有X軸的線圖如下:Highcharts - X軸應該只顯示天,一個月,隱藏毫秒
xAxis: {
type: 'datetime',
dateTimeLabelFormats: {
minTickInterval: 24 * 3600 * 1000,
day: '%e %b'
},
title: {
text: null
}
},
yAxis: {
title: {
text: null
},
labels: {
formatter: function() {
return this.value;;
}
}
},
tooltip: {
formatter: function() {
return '<b>'+ this.y +' '+
'at ' + Highcharts.dateFormat('%e %B', this.x);
}
}
它顯示工具提示正確的日期格式 - 「232在3月4日」。但是XAXIS - 11:03:00.000
如何只顯示日期和月份?
你能嘗試把你的代碼放到一個小提琴?我有你的代碼演示這個演示 - 我沒有改變任何代碼,除了你的yAxis格式化程序中的雙''':http://jsfiddle.net/van5h/ –
@ThoughtfulThighentist,抱歉延遲。我失去了我的互聯網。我的代碼 - http://jsfiddle.net/van5h/2/ – Nick