for (int row=0; row<max; row++) {
rt.incrementCounter();
for (int i=0; i<sets; i++) {
float[] x = (float[])plot.storedData.get(i*2);
float[] y = (float[])plot.storedData.get(i*2+1);
if (row<x.length) rt.addValue("x"+i, x[row]);
if (row<y.length) rt.addValue("y"+i, y[row]);
}
}
return rt;
}