我有一个 QwtPlot。该图是可自动缩放的,但我想限制膨胀以避免我的图仅在 46.5 和 47.5 之间扩展。例如,我会认为我的情节不会扩展到少于 5 个单位。
我知道我必须使用 QwtScaleEngine 但我不怎么做?
看来,您无需使用 QwtScaleEngine 尝试这种代码:
plot=new QwtPlot(parent);
plot->setAxisAutoScale(QwtPlot::yLeft,false);
plot->setAxisScale(QwtPlot::yLeft,minYBorder,maxYBorder,0);
QwtScaleEngine 更适合用于以下格式:
class TimeScaleDraw:public QwtScaleDraw{
public:
TimeScaleDraw(QString fmt):format(fmt){}
virtual QwtText label(double v) const{
return (QDateTime::fromMSecsSinceEpoch(floor(v))).toString(format); }
private:
const QString format;
};