【发布时间】:2016-11-11 14:21:35
【问题描述】:
如何为highcharts气泡添加事件?
我有代码https://jsfiddle.net/stachu/p4j5mng5/27/
plotOptions: {
series: {
cursor: 'pointer',
point: {
events: {
click: function (event) {
$('#report').html(event.s);
}
}
},
},
bubble: {
cursor: 'pointer',
minSize:2,
maxSize:42,
},
},
plotOptions 部分的代码不起作用。任何想法显示来自报告 div 的数据?
【问题讨论】:
标签: jquery highcharts