05-07-2011 12:29 PM
I have multiple plots and how can I plot them with different depth on the Y-axis, Thks
05-09-2011 07:27 AM
06-10-2011 05:04 AM
I followed the example and I could get the plots on different Y scales. However I always get the same plot stacked on the Y scale. See my source
ReadMultiSampleAsync(samplesPerChannel, m_data);
m_graphBeat.Plots.Item(
"Plot-1").PlotY(CNiReal64Vector (m_data));
m_data.Scale(1,1.0);
m_graphBeat.Plots.Item(
"Plot-2").PlotY(CNiReal64Vector (m_data));
m_data.Scale(1,1.0);
m_graphBeat.Plots.Item(
"Plot-3").PlotY(CNiReal64Vector (m_data));
Please help..
07-13-2011 10:03 AM
Did you figure this out?