缩放图表时,刻度值位置不会更新。单击缩放按钮或使用日期范围选择器时,如何更新刻度值位置?
这就是我的afterSetExtreme
函数的样子:
events:{
afterSetExtremes:function(e){
var min = this.min,
max = this.max,
chart = this.chart;
chart.showLoading('Loading data from server...');
chart.xAxis[1].setExtremes(min,max);
$.getJSON('/api/foo', function(data) {
chart.series[0].setData(data[0].data);
chart.hideLoading();
});
}
},