Reputation: 113
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
Reputation: 17791
Yes:
plotOptions: {
series: {
states: {
hover: {
enabled: false
}
}
}
}
Upvotes: 1