Hi Uwe, I am trying to achieve exactly the same thing, however I'm quite new to Qwt and I need more help.

Can you please give me a few hints about how to set up the picker to display the vertical movement marker and to emit the event after the movement is complete?

Qt Code:
  1. m_picker = new QwtPlotPicker(m_amp->canvas());
  2. m_picker->setTrackerMode(QwtPicker::AlwaysOn);
  3. m_picker->setRubberBand(QwtPicker::VLineRubberBand);
  4. m_picker->setSelectionFlags(QwtPicker::PointSelection | QwtPicker::ClickSelection);
  5. connect(m_picker, SIGNAL(selected(const QwtDoublePoint&)), this, SLOT(Clicked(const QwtDoublePoint&)) );
To copy to clipboard, switch view to plain text mode