我使用事件函数来显示缩放事件的开始和结束位置。
xAxis: {
categories: ['2012-01','2012-02','2012-03'],
events: {
afterSetExtremes: function(event){
if (this.getExtremes().dataMin < event.min)
hcmin = this.getExtremes().min;
hcmax = this.getExtremes().max;
alert(hcmin);
alert(hcmax);
}
}
},
函数 this.getExtremes().min 将向我显示标签之间的 x 轴点。我喜欢获取最近的标签,例如“2012-02”。但是如何获得?