Using the CWGraph object in Visual Basic 2005 (.NET), I run through a loop updating all plots based on a timer. I would like to force the object to NOT redraw until I've update the plot values for ALL plots. Otherwise, what seems to happen is that during the loop, one or more plots will be updated on the screen showing a time shift while other plots have not yet updated. It makes things look a little screwed up. In other graphics packages, I have seen a "redraw" property which, when set to false, would not update the plots. Then, once all desired properties had been changed, the redraw could be set back to true, allowing all the changes to take place at the same time!! So I guess my question is whether this is doable with the CWGraph and if so, how. If it is NOT doable, is there a standard work-around?