What I want is to switch axis labels and ticks to match as best for displaying inch and millimeters without changing curve points. I created a custom QwtScaleDraw and overwrote label() method, but this will not change the ticks.
class QwtMyScaleDraw : public QwtScaleDraw {
public:
QwtMyScaleDraw() : QwtScaleDraw() {
}
protected:
QwtText label(double value) const {
// global conversion routine that creates a display string either as millimeter or inch
return ConvertToString(value, ConversionFromMillimeter);
}
};
You can see this behaviour on following picture:
Scale on left is the original scale, scale in the middle is with my custom label and right is the desired scale.
What is the best approach to get my desired results without adding entire curves again with manually converted values?
With the help of the author of the qwt library I found the solution. The answer is to derive from
QwtLinearScaleEngine
class and overloadautoScale
anddivideScale
methods.In my implementation any conversion factor can be choosen (default is 1 = no conversion). This is my code: