Drill Down And Drill Up Events In Drill Down Highchart
In this post, we will see how we can fire drill down and drill up events in drill down highchart. I hope you will like it.
Using The Code
[js]
chart: {
type: ‘column’,
events: {
drillup: function (e) {
alert(‘drill Up’);
},
drilldown: function (e) {
alert(‘drill down’);
}
}
}
[/js]
Here chart is my chart property.
Please see other code snippets here: Code-Snippets
Kindest Regards
Sibeesh Venu