Hi,
When I am loading a new plot I try to have the zoom directly zoomed in a specific area:QRectF currentRect:
Qt Code:
  1. QRectF currentRect(topleft,bottomright);
  2. m_zoomer->setEnabled(true);
  3. m_zoomer->setZoomBase(currentRect);
  4. //m_zoomer->setZoomBase( true) ; I tried this as well
  5. 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?