score:1

You need to also disable inactive state and set allowPointSelect to false.

  plotOptions: {
    series: {
      allowPointSelect: false,
      states: {
        hover: {
          enabled: false
        },
        inactive: {
          enabled: false
        },
        select: {
          enabled: false
        }
      }
    }
  }

Live demo: http://jsfiddle.net/BlackLabel/c9r68bmg/

API Reference: https://api.highcharts.com/highcharts/plotOptions.series.allowPointSelect


Related Query

More Query from same tag