How to disable legend click to stop pie slice from disappearing in Highcharts?

后端 未结 3 757
不知归路
不知归路 2020-12-03 10:09

How to disable legend click to stop pie slice from disappearing in Highcharts??

See example here:

http://www.highcharts.com/demo/pie-legend

Can anyon

3条回答
  •  伪装坚强ぢ
    2020-12-03 10:53

    pie: {
       showInLegend: true,
       allowPointSelect: false,
       point:{
           events : {
            legendItemClick: function(e){
                e.preventDefault();
            }
           }
       }
     }
    

提交回复
热议问题