11-22-2011 02:29 PM
Hi all!
I am reading two channels of data through a DAC card. I'm want to know how to plot the data (which has been amended) on the same graph i.e. not against time. From what I can gather it is not possible to use a waveform graph for this. Is this correct?
11-22-2011 03:03 PM - edited 11-22-2011 03:06 PM
waveformgraph plot y values by time.
you can add new xaxis for different timing i think.
but scattergraph can plot x and y in same time. just like scattergraph.plotx(double[]) scattergraph.ploty(double[])
11-22-2011 03:53 PM
As in scattergraph.plotx(data_set1) scattergraph.ploty(data_set2) ????
11-23-2011 05:46 AM
scatterGraph1.PlotX(xArray);
scatterGraph1.PlotY(yArray);
or
scatterGraph1.PlotXY(xArray, yArray);