我在同一页面上有三个 highcharts 容器,并且想创建一个可用于所有图表的函数,因此我在 setOptions 中定义了该函数。该功能运行良好,但我不知道哪个图表触发了该事件。
我怎么知道哪个图表触发了事件?
plotOptions: {
series: {
cursor: 'pointer',
allowPointSelect: true,
point: {
events: {
select: function () {
alert($(this).attr('id')); // I need this to be the chart id
}
}
},