Hey,

I have yet another question regarding QWT.

I added a QwtPlotPicker to my chart like this:

Qt Code:
  1. QwtPlotPicker picker_ = new QwtPlotPicker(this->canvas());
  2. picker_->setAxis(QwtPlot::xBottom, QwtPlot::yRight);
  3. picker_->setStateMachine(new QwtPickerTrackerMachine());
  4. picker_->setTrackerMode(QwtPlotPicker::AlwaysOn);
  5. picker_->setRubberBandPen(QColor(Qt::green));
  6. picker_->setRubberBand(QwtPicker::CrossRubberBand);
  7. picker_->setTrackerPen(QColor(Qt::black));
To copy to clipboard, switch view to plain text mode 
Now the problem is that the values for the x-axis are shown as milliseconds from the epoch instead of dates. When I add a QwtPlotZoomer it displays values as dates just as I would expect it since my x-axis are dates (the curve is a QwtPlotTradingCurve).
Any ideas what I am doing wrong here?