Hi,
When I am loading a new plot I try to have the zoom directly zoomed in a specific area:QRectF currentRect:
QRectF currentRect
(topleft,bottomright
);
m_zoomer->setEnabled(true);
m_zoomer->setZoomBase(currentRect);
//m_zoomer->setZoomBase( true) ; I tried this as well
myPlot->replot();
QRectF currentRect(topleft,bottomright);
m_zoomer->setEnabled(true);
m_zoomer->setZoomBase(currentRect);
//m_zoomer->setZoomBase( true) ; I tried this as well
myPlot->replot();
To copy to clipboard, switch view to plain text mode
However the the zoomer does not go to that area, it does nothing.
Probably I am missing an important zoomer funciton!
Any help?
Bookmarks