在 QwtPlot 中使用 QTime 作为 X 轴

Posted

技术标签:

【中文标题】在 QwtPlot 中使用 QTime 作为 X 轴【英文标题】:Using QTime as X asis in QwtPlot 【发布时间】:2015-11-10 17:14:32 【问题描述】:

我正在尝试使用 qwtplot 绘制速度时间图形。

我的 X 数据是 QTime 值,Y 数据是相应的速度值。我找不到任何关于使用 QTime 绘图的示例。谁能简单地解释如何绘制 QTime 与 Y 数据?如果可能的话,我还想学习如何缩放 QTime 轴。

【问题讨论】:

Qt 有QwtDateScaleEngine 类来创建基于时间的刻度。查看“股票图表”示例。如果你放大到足够大,你会发现它也能够显示时间值。 感谢您的提示,我提供了一个解决方案。 【参考方案1】:

感谢HeyyYO,对于未来的读者,我找到了解决方案。我正在分享这个非常简单的例子:

#include "QApplication"
#include<qwt_plot_layout.h>
#include<qwt_plot_curve.h>
#include<qwt_scale_draw.h>
#include<qwt_scale_widget.h>
#include<qwt_legend.h>
class TimeScaleDraw:public QwtScaleDraw

public:
    TimeScaleDraw(const QTime & base)
        :baseTime(base)
    
    
virtual QwtText label(double v)const

    QTime upTime = baseTime.addSecs((int)v);
    return upTime.toString();

private:
    QTime baseTime;
;

int main(int argc,char * argv[])

    QApplication a(argc,argv);

    QwtPlot * myPlot = new QwtPlot(NULL);

    myPlot->setAxisScaleDraw(QwtPlot::xBottom,new TimeScaleDraw(QTime::currentTime()));
    myPlot->setAxisTitle(QwtPlot::xBottom,"Time");
    myPlot->setAxisLabelRotation(QwtPlot::xBottom,-50.0);
    myPlot->setAxisLabelAlignment(QwtPlot::xBottom,Qt::AlignLeft|Qt::AlignBottom);

    myPlot->setAxisTitle(QwtPlot::yLeft,"Speed");
    QwtPlotCurve * cur = new QwtPlotCurve("Speed");
    QwtPointSeriesData * data = new QwtPointSeriesData;
    QVector<QPointF>* samples=new QVector<QPointF>;
    for ( int i=0;i<60;i++)
    
        samples->push_back(QPointF(i,i*i));
    
    data->setSamples(*samples);
    cur->setData(data);
    cur->attach(myPlot);
    myPlot->show();
    return a.exec();

【讨论】:

以上是关于在 QwtPlot 中使用 QTime 作为 X 轴的主要内容,如果未能解决你的问题,请参考以下文章

QwtPlot - 多个 Y 轴

QwtPlot 显示错误的日期/时间

QwtPlot 更新自定义轴

如何在 QwtPlot 上设置固定数量的刻度

如何将整数变量转换为 QTime 对象

如何在 QwtPlot 图上方放置一个条形图?