How to disable legend click to stop pie slice from disappearing in Highcharts??
See example here:
http://www.highcharts.com/demo/pie-legend
Can anyone help??
You do this by attaching a handler to the legendItemClick
event and just returning false
. This will prevent the default action which is to toggle the pie sector.
point: { events: { legendItemClick: function () { return false; // <== returning false will cancel the default action } } }
See this example http://jsfiddle.net/mfras3r/3vVGB/1/
pie: { showInLegend: true, allowPointSelect: false, point:{ events : { legendItemClick: function(e){ e.preventDefault(); } } } }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With