Reputation: 7
I want to restrict tool-tip in high-charts to display only one second, is it possible ?
There is enable and disable property but that doesn't help me as i need to set duration of time to display tool-tip
Upvotes: 0
Views: 500
Reputation: 39099
You need to increase the default hideDelay
value:
tooltip: {
hideDelay: 1000
}
Live demo: http://jsfiddle.net/BlackLabel/0hckr9q2/
API Reference: https://api.highcharts.com/highcharts/tooltip.hideDelay
Upvotes: 1