Disable hover on HighCharts

后端 未结 10 743
长情又很酷
长情又很酷 2021-02-03 21:03

I have building a pie chart using HighCharts library, and here is my chart:

 // http://jsfiddle.net/t2MxW/20890/

    var chart = new Highcharts.Chart({
                 


        
10条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-03 21:30

    plotOptions: {
      series: {
        states: {
          inactive: {
            opacity: 1,
          },
        },
      }
    }
    

    I did this to display multiple line charts on hover.

提交回复
热议问题