Disable hover on HighCharts

后端 未结 10 931
长情又很酷
长情又很酷 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:29

    You might alternatively want to disable all mouse tracking in general, both tooltip and hover effects:

    (copy and paste link) http://api.highcharts.com/highcharts#series.enableMouseTracking

    http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-enablemousetracking-false/

    plotOptions: {
        series: {
            enableMouseTracking: false
        }
    }
    

提交回复
热议问题