07-11-2011 10:43 AM
I am very new to LabVIEW and I need to make a graph or chart with the y-data being the movement of a device and the x-data being real time. I know how to get the position information from the instrument and how to set real time for the x-axis, but I have no idea how to wire these things into a graph, what kind of graph to use, or what other VIs I need for the y-data. I've attached the page I am working on.. It is kind of just a hodge podge of things that I thought may be useful, but I obviously need some help. Thanks in advance.
Solved! Go to Solution.
07-12-2011 06:26 PM
From what you have so far in your VI, it seems like you'll be requesting some position data from your device at each iteration of the loop. In this case, you could use a waveform chart inside the while loop to view these points. Each new point will be appended to the chart as they come in. You can do this by writing values to the chart as you attain them inside the while loop. This link should also be able to clear up some confusion as to the differences between the charts and graphs in LabVIEW.
07-13-2011 07:30 AM
Thank you so much! 🙂