You can use the GetXData and GetYData methods on the plot to get the data from the plot, then you could plot that data on a plot in another graph. For example, if you're using the WaveformGraph, you could do this:
double[] data = sourcePlot.GetYData();
targetPlot.PlotY(data);
Similarly, if you're using the ScatterGraph, you could do this:
double[] xData = sourcePlot.GetXData();
double[] yData = sourcePlot.GetYData();
targetPlot.PlotXY(xData, yData);
- Elton