What takes most of the time is the redraw of the graph area. What you should do is chart all the data, except in less function calls to ChartXY. You can do this by charting multiple points at a time.
First, you need to know if the X values for all the plots are the same. In other words, do all three plots have Y values corresponding to the same X values. If so, that means you can plot the lines together.
Instead of using CNiGraph::ChartXY(double x, double y), using CNiGraph::ChartXY(CNiMatrix& xy). The matrix will be one row of X values and 1 or more rows of Y values.
So as data comes in, don't plot each point immediately. Buffer a few points, say 5 or so, together instead. So let's say you just got three new data points, one for each plot. Instead
of charting them immediately, put them into a CNiMatrix as:
CNiMatrix data(4, 5);
data(0, i) = xval;
data(1, i) = yval1;
data(2, i) = yval2;
data(3, i) = yval3;
Then do this 4 more times incrementing i with the next 3 data points for each plot. Then make one call to m_graph.ChartXY(data) and reset i to 0. This will combine 15 of your current ChartXY calls into one call every 1/2 second and you will still be charting all of your data.
If your X values are actually different for each plot, then you won't be able to chart multiple plots at once, but you can still buffer the data points befor plotting.
Best Regards,
Chris Matthews
Measurement Studio Support Manager