我找到了this,但它对我没有帮助。在 highlichted combined 列中的任何地方单击时,如何触发事件? 仅触发其中一个数据列中的点击。单击浅蓝色(青色)区域没有任何效果。
有了这些情节选项:
plotOptions: {
series: {
animation: { duration: 50 },
events: {
click: function(e) {
console.log(
'x: ' + e.point.category + ', ' +
'y: ' + e.point.y + ', ' +
'series.name: ' + this.name
)
},
}
},
}