我试图在下面的 xAxis 事件处理程序中设置极端,我得到了未捕获的类型错误。如何在 xAxis 事件处理程序中设置极限?
xAxis: {
events: {
setExtremes: function (e) {
if (e.trigger === "navigator") {
forceRebuildSeries(); //Get all data points
// Set Extremes (redisplay with new data points)
this.chart.xAxis[0].setExtremes(e.min, e.max); //Uncaught TypeError: Property 'setExtremes' of object #<Object> is not a function
}
}
}
},
我将不胜感激任何可用的帮助或解决方法。谢谢。