Pradeep Jain
Pradeep Jain

Reputation: 113

Highcharts Point marker

When you hover on any point in highcharts graphs. The point is highlighted(zoomed). Is there a way to remove this effect and show the points as it is (like without hover) and the tooltip be shown?

Upvotes: 0

Views: 73

Answers (1)

jlbriggs
jlbriggs

Reputation: 17791

Yes:

plotOptions: {
  series: {
    states: {
      hover: {
        enabled: false
      }
    }
  }
}

Upvotes: 1

Related Questions