Bubble drag n drop are a part of Highcharts 6.2+ as a module. This plugin was build for older versions of Highcharts.
Go to project page to see this module in action: http://blacklabel.github.io/bubble_dragndrop/
<script> window.chart = new Highcharts.Chart({ chart: { renderTo:'chart', type: 'bubble' }, title: { text: 'Highcharts Bubbles' }, tooltip: { followTouchMove: true, followPointer: true }, series: [{ data: [[10,20,3],[5,13,10],[40,32,15]] }, { data: [[5,5,20],[21,12,10],[22,5,9]] }, { data: [[7,3,14],[13,10,4],[12,13,14]] }] }); </script>- Plugin requires the latest Highcharts (tested with 2.3.5)
- Like any other Highcharts module (e.g. exporting), add
<script>
tag pointing tobubble-dragndrop.js
below Highcharts script tag.
The latest code is available on github: https://github.com/blacklabel/bubble_dragndrop/
Demos are available at project's github page: http://blacklabel.github.io/bubble_dragndrop/