01-23-2012 03:55 PM
Is there a way to update an "XY" graph each time a point is generated as with a "Chart"?
In the attachment, the XY graph, "OUT" is updated after the loop is completed. I'd like to update it as the data is generated inside the loop. Is this possible?
Thank you.
Solved! Go to Solution.
01-23-2012 04:42 PM
To make it work, you have to make the complete array available inside the loop. That means you cannot use an indexing tunnel at the exit to construct the array. Instead, you have to use a shift register and build array inside the loop.
This will do what you want. It would have been easier to show you if you'd posted your code.