LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Charts and graphs

Hi

 

I need to develop an UI such that if an user clicks a button on the front panel during run time, new waveform chart must be added to an existing one (like stacking them). Is there any possible way to do this? Is it possible to do with property nodes? Can anyone help me out regarding this?

0 Kudos
Message 1 of 2
(2,715 Views)

Hi Aishwarya,

 

if you want to add a graph to an existing graph indicator you could use the build array function and add all the graphs you want to display into a 2D array. This can be done dynamically to append a new graph every time you click on the button. Two words of caution with this: a) If the arrays you add are too big, you might get memory problems as your program runs and b) for certain functionality it is not the best implementation to pass a 2D array to a multiplot. For some of the crazier stuff you might need it in a cluster, but you probably needn't worry about that now.

 

Feel free to check back if you have any further questions.



Remember Cunningham's Law
0 Kudos
Message 2 of 2
(2,692 Views)