5
Answers

how 2 add a movable vertical line in a graph of xy axis wpf

avinash kumar

avinash kumar

11y
1.9k
1
Hi,
 
I have a need to have a movable slider on line charts. The way it should work is as follows:
 
1. Slider/Cursor should be parallel to Y-axis i.e. vertical axis
 
2. When user moves this slider, corresponding/intersecting Y values on all graphs show up in labels just like a stock ticker chart.
 
3 the intersection of slier with the graph line ,the value should be displayed in textbox
 


 
Thanks,
avinash
Answers (5)
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
Unless I'm missing something here, I'd have thought that you should be able to create an XmlDocument and then use its LoadXml method to load the XML string you've received from the serial device without needing to save it to a file first.

You can then create an XPathNavigator by calling the XmlDocument's CreateNavigator method.

So, in code, that would be be something like this:

XmlDocument doc = new XmlDocument();
doc.LoadXml (xmlString);
XPathNavigator nav = doc.CreateNavigator();

Alternatively, you could forget about XPathNavigator and use LINQ to XML which can certainly parse in-memory XML strings.