I have a click event on the chart, but if you use scaling and want to reset the scaling, the click event also fires.
I have the following chart settings:
$('#container').highcharts({ chart: { type: 'line', marginRight: 130, marginBottom: 25, zoomType: 'x', events: { click: function (event) { alert('chart click!'); } } }...
see working example: http://jsfiddle.net/2Y3ah/
Well, this seems like an error or if it is designed to block the click event if the reset zoom button is pressed.
source share