highcharts 设置图例项不可点击

在plotOptions:{}中添加

series: {

    events: {
      //控制图标的图例legend不允许切换
     legendItemClick:  function  (event){                                    
        return  false //return  true 则表示允许切换
     }
   }
}

猜你喜欢

转载自www.cnblogs.com/funny-code123/p/9252926.html