存在对齐问题,如下图所示:
在图表中,“10 月 3 日”点不在 10/03 上,因为它需要在 10/03 和 10/04 之间。所有的点都是如此。
x轴代码如下:
xAxis: {
type: 'datetime',
minTickInterval: 24 * 3600 * 1000,
dateTimeLabelFormats: { // don't display the dummy year
day: '%m/%d'
},
formatter: function () {
return Highcharts.dateFormat("%m/%d", this.value);
},
gridLineColor: '#197F07'
}
小提琴中重现了相同的问题:
在IE中打开fiddle查看问题