I am referring to the example provided in FeatureBrowser to display Chart Co-ordinates. I have 3 spline series and date as x-axis. Instead of the exact coordinates, I want to display the corresponding 3 series values at the corresponding date.
For example:
Date: 1/1/2013
Price: 123.45
Quantity: 500
MarketVal: 231,000
Basically, how do I get the value of each series at the selected date?
Thanks.
Hello,
I am just checking the progress of this issue and was wondering if you managed to achieve your goal or if you need any further assistance on the matter.
Thank you for your post. I have been looking into it and I can suggest you see out new features of XamDataGrid in version 13.1 for the tooltip and crosshairs. You can find them in the Samples Browser under Editing and Selection section. The samples are: Category Tooltip Layer, Crosshair Layer, Item Tooltip Layer. Also you can see how to combine them in the Multiple Layers sample in the same section.
Looking forward for your reply.
Hi - Still waiting on an answer to this question. Anyone?
Basically, when the cross-hair is on a particular X-Axis Date, I want to know the corresponding series values. I know how to get the Y-Coordinate.
So, I have:
DateTime xDate = new DateTime((long)unscaledX);
Now, I need something like... decimal price = priceSeries.GetValue(xDate);
Pls help - Thanks.