I have an area Highchart chart. Added a click event to the chart, like this:
plotOptions: {
area: {
marker: {
enabled: false
},
cursor: 'Pointer',
stacking: 'normal',
events: {
click: function(event) {
alert("hi there");
}
}
}
}
It works fine. The problem is that you can only click very near to a line, but not on the area below the line, it is not clickable.
Is there a setting that I overlooked?