TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Drill Down And Drill Up Events In Drill Down Highchart
Sibeesh Venu
Jul 27
2015
Code
1.6
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
Using The Code:
chart: {
type:
'column'
,
events: {
drillup:
function
(e) {
alert(
'drill Up'
);
},
drilldown:
function
(e) {
alert(
'drill down'
);
}
}
}
Here
chart
is my chart property.
Drill Down Event
Drill Up Event
HighChart
HighChart Events