Since you saved your file with no header, you have a simple tab-separated text file, so you need to read it in a traditional fashion. I have attached a VI which shows the process. If you have large amounts of data, you may not want to read the whole file in at once. You may also want to do some sort of autodetection of how many data points you actually have (there are a lot of blank fields, which get interpreted as zeroes). Alternately, simply clean up the file before using it. I hard-coded the trimming.
Basic procedure is:
- Open file
- Read it all in as a text string
- Separate out the header
- Convert the first column to a time (I assumed seconds)
- Convert the other columns and bundle into XY points for the graph
- Array is transposed from where we want it, so transpose
- Array now needs each XY set bundled for the XY graph, so do that at the same time we trim the blank points
- Wire to XY graph
If you have any questions, let us know.