如何为highcharts bubble添加事件?
我有代码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中显示数据?
答案 0 :(得分:0)
它是bug,出现在5.0.1版本中。使用5.0.0版本或github的最新开发版本。
<script src="https://code.highcharts.com/5.0.0/highcharts.js"></script>
<script src="https://code.highcharts.com/5.0.0/highcharts-more.js"></script>