In this Fiddle -- http://jsfiddle.net/8VTTH/57/ -- once you click a series point, you see the Tooltip with a dynamic link. Upon clicking the link, we should see an alert "clicked"
The above Fiddle stops giving Expected behavior once we update the Highcharts library version to 4.2.7 or above. The link when clicked does not show the alert
Hi @niranjanshukla
Thank you for reporting the issue. It's caused by tooltip.style.pointerEvents
, which by default is set to 'none'
. Changing this to 'all'
resolves the issue: http://jsfiddle.net/8VTTH/59/
Note: this is a fix for #1686 issue, so you may see issues with pie chart & tooltip as described in the ticket.
Most helpful comment
Hi @niranjanshukla
Thank you for reporting the issue. It's caused by
tooltip.style.pointerEvents
, which by default is set to'none'
. Changing this to'all'
resolves the issue: http://jsfiddle.net/8VTTH/59/Note: this is a fix for #1686 issue, so you may see issues with pie chart & tooltip as described in the ticket.