sagi Posted October 16, 2012 Report Share Posted October 16, 2012 I have seen your drill down samples (under demo tab) and I have 2 question about it : 1. can you capture a right click instead of a left mouse click ? 2. the evt args (point & series) retrieves the point and series indexs. How do I the point y value and x-label ? I used : var point = chart1.getPoints().getItem(iSeries, iPoint); to get the point object. Now how do I retrieve the value and x-label ? Thx Sagi Quote Link to comment Share on other sites More sharing options...
0 sagi Posted October 21, 2012 Author Report Share Posted October 21, 2012 ? Quote Link to comment Share on other sites More sharing options...
0 JuanC Posted October 23, 2012 Report Share Posted October 23, 2012 chart.getPoints() will only give you access to per-point attributes. To retrieve the value you would use chart.getData().getItem(seriesIndex, pointIndex) To retrieve the X axis label you would use chart.getAxisX().getLabels(pointIndex) JuanC Quote Link to comment Share on other sites More sharing options...
Question
sagi
I have seen your drill down samples (under demo tab) and I have 2 question about it :
1. can you capture a right click instead of a left mouse click ?
2. the evt args (point & series) retrieves the point and series indexs. How do I the point y value and x-label ?
I used : var point = chart1.getPoints().getItem(iSeries, iPoint); to get the point object. Now how do I retrieve the value and x-label ?
Thx
Sagi
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.