I set up a grid of timeseries QwtPlots like this:
for (int i=0; i<nGraphs; i++) {
mdiArea->addSubWindow(pGraph[i]);
pGraph[i]->show();
}
As the program executes, at each time step the line plot is redrawn with the incremented number of data points. This all works fine. The only problem is that usually (but not always) the y axis title and/or y axis labels are truncated, as in the attached pic.
Capture.jpg

I'd like to know if there is a command to update or resize (whatever the right term is) the plots so that the axis title (if present) and the axis labels are visible.

Thanks
Gib