I have tried to attach a click
event to a Highcharts 3D column using these options:
plotOptions: {
column: {
pointPadding: 0.35,
depth: 25,
events: {
click: function() {
alert("HI")
}
}
},
This works fine on Chrome: when I click on the column, I see an alert box.
But with Internet Explorer, it doesn't work. When I click on the column in IE11, I don't see an alert box.
Why doesn't the alert box appear in IE11?