Measurement Studio for VC++

cancel
Showing results for 
Search instead for 
Did you mean: 

Reading data points back off of a NiPlot

How do I get the x,y vaues back off my chart once I plot them? I can move the crosshair over the points and watch the x,y's update in edit boxes so I know that the points are still stored somewhere. Something like the following maybe?

XYArray = m_graph.GetPlots().Item("Plot-1").GetXYValues();

Yeah I'm dreaming about the GetXYValues function. Thanks in advance for any tips.

Grant
Grant M. Johnson
Project Engineer
LECO Corporation
0 Kudos
Message 1 of 3
(3,593 Views)
We don't maintain the data in the control after it has been plotted. This would be very inefficient memory usage and not a very good design for most application. For example, if you plot 10000 double values, we decimate that data down to the relevant information for drawing (pixels) and draw it. Maintaining the data for retrieval would mean an extra 80000 bytes of memory used by the control. Just keep the data yourself in a variable outside the control if you need to retain it.

Best Regards,

Chris Matthews
Measurement Studio Support Manager
Message 2 of 3
(3,593 Views)
Thanks Chris. That's what I needed to know. I'm glad you don't save all the points by the way. 🙂
Grant M. Johnson
Project Engineer
LECO Corporation
0 Kudos
Message 3 of 3
(3,593 Views)