Now that my vector additions are decently robust, I'd like to speed up the graphs that display the data.  I've already disabled auto-scaling, and all the vectors being plotted are the same length and type (CNiReal64Vector's).
Currently I'm using the .GetPlots().Item(i).PlotY(m_vData) a couple of times to plot a few waveforms.  Is this the fastest method?
...
Please tell me that the graphs don't index each vector using the overload [] operators...  If they do, is there a way I can inject the data right into the graph's data buffer and tell it to refresh?