如何在bubble higharts中添加bubble事件

时间:2016-11-11 14:21:36

标签: jquery highcharts

如何为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中显示数据?

1 个答案:

答案 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>

https://jsfiddle.net/p4j5mng5/29/