08-22-2008 07:56 PM
08-22-2008 08:12 PM
The short answer is no. Because by definition, waveform graphs or charts are based on a common dt for all points.
So the next question is what are the "other reasons" for why you want to use a digital waveform graph? There is probably a way to have the XY graph behave in whatever special way you want it to.
08-23-2008 08:47 PM
My data is an event triggered log. The challenge with the XY Graph is that it creates a triangle waveform for my XY coordinates, rather than a square pulse train. It is an instantaneous chart rather than a transition plot.
What I want is for the data to stay at the value it was at last time plotted until the next event point where the data will be replotted.
08-23-2008 11:05 PM - edited 08-23-2008 11:07 PM
Have you tried changing the properties of the plot for an XY graph? It looks like it has the ability to display the same transitions between points like the waveform graph and chart.
08-24-2008 08:18 PM
09-02-2008 09:17 AM
09-03-2008 07:15 AM
The easiest way is to add an offset to your Y values. This has the advantage of transparency on your block diagram.
Alternately, you can create a separate Y axis for each plot, set the Y axes ranges so the 0 points are offset, associate each plot with the appropriate Y axis, and then just plot. This is a bit more work up front and will result in slower graph performance (each extra axis slows the plot a bit). You may want to defer panel updates while plotting to help. Most of this is done with property nodes and methods. If you want to use this method and need help finding things, let us know.