[Solved] How to make donut chart clickable
[ad_1] Use chart: { type: ‘pie’ } with innerSize: ‘50%’ to create a donut. Here is an example: Highcharts.chart(‘container’, { chart: { type: ‘pie’ }, title: { text: ‘Click points to go to URL’ }, xAxis: { type: ‘category’ }, plotOptions: { series: { innerSize: ‘50%’, cursor: ‘pointer’, point: { events: { click: function() { … Read more