单击后退按钮后无法向下钻取。第一次钻取工作正常,但在回到原始状态后,在点击栏时向下钻取不起作用。 Sample graph link is here
drillup: function(e) {
chart.xAxis[0].setCategories(protocolNames, true);
chart.xAxis[0].update({labels:{rotation:0}});
chart.yAxis[1].update({
labels: {
enabled: true
},
title: {
text: ''
}
});
}
答案 0 :(得分:2)
要在高级图表中自定义图表使用e.seriesOptions
对象,请参阅此Jsfiddle。
请不要在向上钻取事件中覆盖图表对象。
drillup: function(e) {
console.log(e.seriesOptions);
}