LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

table (very stupid question)

I'm trying to have a table in my program with synchronous display and I just can't see anything in the table when the program runs.

Can someone, please, help me? 

The same data is being successfully displayed in a graph, but not in the table, any idea?

 

thanks

 

 

0 Kudos
Message 1 of 4
(2,541 Views)

A chart (the graph type you used) has an internal buffer for the data.

For a table you would have to make that yourself.

 

Ton

Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
Nederlandse LabVIEW user groep www.lvug.nl
My LabVIEW Ideas

LabVIEW, programming like it should be!
0 Kudos
Message 2 of 4
(2,533 Views)
Can you give me an exampel of thit?
0 Kudos
Message 3 of 4
(2,520 Views)
You need to either (a) use a shift register to continuously append to an array that you write to the table, or (b) read the contents of the table, add a row, and then write the contents back to the table. Since your program makes use of shift registers and property nodes you should already know how to do this. Or, did you not write your code?
Message 4 of 4
(2,513 Views)