Highcharts 将他们的库升级到版本 3。但在这个版本中,我无法像以前那样捕获鼠标的右键单击:
chart1 = new Highcharts.Chart({
chart: {
renderTo: 'container-chart-1',
zoomType: 'xy'
},
(...),
plotOptions: {
series: {
cursor: 'pointer',
point: {
events: {
click: function(e) {
alert('LEFT CLICK YEAH!');
},
contextmenu: function (e) {
alert('RIGHT CLICK NOT SO YEAH!');
}
}
}
}
}, (...)
我仍在使用第 2 版,因为我无法使其正常工作。
想法和想法将不胜感激?