Hello,

I have an implementation for a scrolling area working fine, the problem is my implementation works when I press the left button or right button and drag the plotting area. I would like to enable my scroll using the mouse wheel. My implementation is:

Qt Code:
  1. plotScroll = new QwtPlotPanner( plot->canvas() );
  2. plotScroll->setAxisEnabled(QwtPlot::yLeft,true);
  3. plotScroll->setAxisEnabled(QwtPlot::xBottom,false);
To copy to clipboard, switch view to plain text mode 

The implementation above work fine, but just using right or left button and it doesn't work for the wheel. Is it possible to enable wheel using QwtPlotPanner? How do I do that?
Thanks in advance
Best Regards