Origin Ver. and Service Release (Select Help-->About Origin): 2021
Operating System:win10
Hi,
I have a graph with dataplots, some with errors, and I need to access all the data.
I can get the main dataplot with
foreach (DataPlot dp in gl.DataPlots)
{
vector vecX, vecY;
dp.GetDataPoints(0, -1, vecX, vecY);
some other code;
}
but how can I access the error plots ?
Thanks