> if the refresh time is 100 ms, the x-axis changes at a rate such that
> the value on the x-axis scale is 10 times faster than a normal second.
> is it possible to Format the chart such that the indicator shows the
> actual time elapased i.e. 1 sec for ever second elapsed rather than
> what is happening now, 10 seconds elapse on the x-axis for every
> actual second.
>
There are two primary datatypes that can be wired to a chart. The
waveform contains a timestamp, and the chart will display these
timestamped values faithfully. If you are instead wiring only
amplitudes, then the chart has to make up timestamps. It doesn't do
this based upon when the values arrive to the chart, but rather based on
the number of points wired and the Offset and Multiplier
for the scale.
The Offset determines the time of the first point, and the Multiplier
determines the time between adjacent points. You can set this value to
anything you like, and the chart will be labeled using this information
and this has nothing to do with the rate that the points are sent to the
chart.
Greg McKaskle