12-03-2007 11:14 AM
12-03-2007 11:43 AM
12-05-2007 11:33 AM
12-05-2007 12:59 PM
12-07-2007 11:26 AM
12-07-2007 12:00 PM
The x axis can be set for absolute or relative time. To initialize it to 00:00:00, just wire a 0 to the XScale.Offset property. To continue writing to the same chart, there are a couple of ways. If, after the ramp loop, you proceed to another loop, just place a local variable of the chart in the second loop.
You also need to be aware of how the chart works. If you right click on the chart, you will see an option called Chart History Length. This is the number of points the chart will maintain before dropping old data and replacing them with new. If you intend to run the program for an extended period of time, you would need to calculate the size of the history based on how often you are acquiring data. When I've used a chart with frequent readings, I will write the data to a file and when the program finishes, read from the file and display the entire file with a graph and not a chart.