I'm looking for some input on whether this is an error or if I'm missing something with the information I've got.
I have a set of waveform charts where I set the X offset to a timestamp
converted to a DBL (current time) and then add a point to the charts
each second or however long of an interval. The background behind
this is I want to have one scrollbar and update all of them to have the
same view (but that's not necessary to see the discrepancy/error)
So create a waveform chart, then set the X offset to the current
date/time by converting a timestamp to a DBL, and then put some data on
the chart until the horizontal scrollbar enables and allows the user to
scroll.
I then have an event case for Scale Range Change. It fires as
soon as you move the horizontal scrollbar. In that event case
there is a property on the left wall designated NewRange. There
is also a property designated ScaleRef. If ScaleRef is wired to a
property node and the Range value is compared to the NewRange property,
shouldn't they be the same?
Trying to set the Range of my secondary plots to the NewRange of the
primary plot results in all kinds of crashing/hanging/auto-shutdown
behavior (memory cannot be accessed, blah blah blah). So I
finally realized that NewRange has a min and max on the order of 10 to
100 (for example) while the Range property has min/max values on the
order of 3.21e9 (converted timestamp dbl).
So then what is the NewRange property and why doesn't it match the scale range?