Measurement Studio for .NET Languages

cancel
Showing results for 
Search instead for 
Did you mean: 

Plot data acquired through DAC card on a graph

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?

0 Kudos
Message 1 of 4
(4,208 Views)

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[]) 

0 Kudos
Message 2 of 4
(4,204 Views)

As in scattergraph.plotx(data_set1)  scattergraph.ploty(data_set2) ????

0 Kudos
Message 3 of 4
(4,197 Views)

scatterGraph1.PlotX(xArray);

scatterGraph1.PlotY(yArray);  

or

scatterGraph1.PlotXY(xArray, yArray); 

0 Kudos
Message 4 of 4
(4,187 Views)