Appending multiple graph boxes to a single window without them copying the most recent append
I'm trying to create a window that has several graph boxes being appended to help visualize the data that I'm processing. The setup I have is similar to this. thisWindow = new window("Test Window");
for(x = 1, x <=nitems(thingsToDraw), x++,
thisWindow << append(
graph box(
(setup of X and Y axis, scales and such)
(for loops that create dynamic shapes in the graph box)
);
);
);The prob...
vince_faller