rajukamatham Posted August 27, 2013 Report Share Posted August 27, 2013 Hi.. i m trying the example given in http://support.softwarefx.com/jChartFX/article/2501235#27182674-0690-e211-84a5-0019b9e6b500 http://support.softwarefx.com/jChartFX/article/2501235#27182674-0690-e211-84a5-0019b9e6b500'>I downloaded the code and tried. Everything is working fine but tooltip showing the same data ( first bar info) even i moved cursor to other place... when i debugged the code, country id passed same everytime. file: sample.js function updateDetailsChart(args) { countryID = args.getPoint(); doDataCountry(countryID, chartDetails); doDetailedInfo(countryID); } file: jchartfx.coreVector.js getPoint: function () { return null != this.a ? this.a.b : -1 } i could not able to fix the issue .. pls help. Quote Link to comment Share on other sites More sharing options...
0 JuanC Posted August 27, 2013 Report Share Posted August 27, 2013 We have fixed this issue recently and should be uploading a new build soon. Regards, JuanC Quote Link to comment Share on other sites More sharing options...
0 rajukamatham Posted August 28, 2013 Author Report Share Posted August 28, 2013 When can i expect the release.... Quote Link to comment Share on other sites More sharing options...
0 rajukamatham Posted August 28, 2013 Author Report Share Posted August 28, 2013 In the given example we are getting only X axis value(ie country). Is there any possibility to get the both X and Y axis values to get exact location of cursor in the chart. Actually we are planning to buy the license so pls let us know the next relaese date with fixes. thanks raju Quote Link to comment Share on other sites More sharing options...
0 JuanC Posted August 28, 2013 Report Share Posted August 28, 2013 If you want to know the data associated with a specific point you can do something like this var value = chart1.getData().getItem(args.getSeries(), args.getPoint()); Note that value will contain the value plotted for the specific bar/point you are highlighting, this is not the pixel position of the cursor. About the release date for the fix, we recently released build 4982 which should fix the tooltip issue where point and series was always returned as 0. Regards, JuanC Quote Link to comment Share on other sites More sharing options...
Question
rajukamatham
Hi..
i m trying the example given in http://support.softwarefx.com/jChartFX/article/2501235#27182674-0690-e211-84a5-0019b9e6b500
http://support.softwarefx.com/jChartFX/article/2501235#27182674-0690-e211-84a5-0019b9e6b500'>I downloaded the code and tried. Everything is working fine but tooltip showing the same data ( first bar info) even i moved cursor to other place...
when i debugged the code, country id passed same everytime.
file: sample.js
function updateDetailsChart(args) {
countryID = args.getPoint();
doDataCountry(countryID, chartDetails);
doDetailedInfo(countryID);
}
file: jchartfx.coreVector.js
getPoint: function () {
return null != this.a ? this.a.b : -1
}
i could not able to fix the issue .. pls help.
Link to comment
Share on other sites
4 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.