我不确定为什么月份和年份在 x 轴上显示两次。请指教
我的 highcharts 代码.. 我的代码在定义 x 轴时有错吗?
$(function () {
var chart;
$.post('data.php', function (json) {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'area'
},
title: {
text: 'Statistics',
},
yAxis: {
type: 'double',
min: 0
},
xAxis: {
type: 'datetime',
labels: {
formatter: function () {
return Highcharts.dateFormat('%b %y', this.value);
},
//dateTimeLabelFormats: {
// month: '%b \'%y',
// year: '%Y'
// }
}
},
series: [{
name: Stat!,
data: eval(json)
}]
});
});
});