> I am trying to add a graph to my VI. I have a continous loop measuring
> weather data. I want to plot these values with the current time on the
> X axis. Is there a simple way to accomplish this?
Since it is continuous, it sounds like you might want a chart instead of
a graph. Charts have built-in history, keeping the existing points and
adding the new ones to it. If using a graph, you can do the same using
a shift register and an array builder.
As mentioned in the other post, for evenly spaced points, set the
multiplier to the delta between points, and set the Offset to be the
time of the first point.
Another way to go that will work for discrete points is to build a
waveform by attaching a timestamp to each.
Greg McKaskle