07-30-2008 03:53 PM
07-30-2008 04:18 PM
07-30-2008 06:56 PM
07-30-2008 11:09 PM
07-31-2008 12:01 AM
Thanks Karissa...I did know about the double-stripping for run-time environments, so I've accounted for that. I just used a property node to determine whether I was in development mode or run-time mode, and did the double-strip or not based on that. Seems to work fine.
A totally unrelated question: I have a strip chart that I'm using to display some data. It displays a 5-point array every second. Right now the x-axis is in points, not seconds (i.e. instead of the x-axis reading "10", to indicate 10 seconds of data, it reads "50", to indicate 50 points). Is there a quick and easy way to get the x-axis to display seconds, or do I have to use an xy graph instead of a strip chart? I do want a strip-chart update.
Thanks everyone!
d
07-31-2008 12:27 AM
Hi DianeS,
you can use the factor and offset fields from the chart option. See the attached example.
Mike
07-31-2008 09:46 AM
Hi Mike,
Unfortunately your example wasn't very helpful. All it did was clear the chart at the beginning (which I know how to do), then plot a single point versus time. So basically, the time elapsed and the number of points were still the same. I know how to do that -- the chart sort of does that by default, which is specifically what I'm trying to change. I'm trying to plot where the time elapsed (in seconds) and the number of points plotted (per second) are not the same.
Was that the example you meant to attach? It didn't show either of the properties you mentioned. I'll look for them, though (I assume I can find them in the property nodes for my chart) and see if I can get it to work.
Thanks!
d
07-31-2008 09:50 AM
07-31-2008 08:52 PM
Actually, although the sample code wasn't helpful, the post was -- I found the "multiplier" property node, wired an appropriate value to it (in this case, [1/sample rate]/10 -- the divide by 10 is because I'm decimating the data before displaying it), and ta-da! The x-axis now displays exactly the way I want it to. I was sure there had to be an easy way to do it, and indeed there is.
Thank you, everyone, for the help!
d