用QCustomPlot画x轴单位是时间且实时变化的动态图

转载自http://blog.chinaunix.net/uid-11829250-id-5750296.html

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <QTimer>
#include "qcustomplot.h"

namespace Ui {
    class MainWindow;
}

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();
    //设置qcustomplot画图属性,实时
    void setupRealtimeDataDemo(QCustomPlot *customPlot);
private slots:
    //添加实时数据槽
    void realtimeDataSlot();

private:
    Ui::MainWindow *ui;
    //定时器,周期调用realtimeDataSlot()槽,实现动态数据添加到曲线
    QTimer dataTimer;


};

#endif // MAINWINDOW_H


#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QVector>
#include <QTimer>
#include <QTime>
/*
 *了解x坐标轴的方法,添加数据的方式
 *
*/
MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);

    setupRealtimeDataDemo(ui->customPlot);
    ui->customPlot->replot();

    ui->checkBox_temp->setChecked(true);
    ui->checkBox_hui->setChecked(true);
}

MainWindow::~MainWindow()
{
    delete ui;
}

//画图初始化
void MainWindow::setupRealtimeDataDemo(QCustomPlot *customPlot)
{
  customPlot->addGraph(); // blue line
  customPlot->graph(0)->setPen(QPen(Qt::blue));
  customPlot->graph(0)->setName("temp");
  //customPlot->graph(0)->setBrush(QBrush(QColor(240, 255, 200)));
  //customPlot->graph(0)->setAntialiasedFill(false);
  customPlot->addGraph(); // red line
  customPlot->graph(1)->setPen(QPen(Qt::red));
  customPlot->graph(1)->setName("hui");
  //customPlot->graph(0)->setChannelFillGraph(customPlot->graph(1));


  customPlot->xAxis->setTickLabelType(QCPAxis::ltDateTime);
  customPlot->xAxis->setDateTimeFormat("hh:mm:ss");
  customPlot->xAxis->setAutoTickStep(false);
  customPlot->xAxis->setTickStep(2);
  customPlot->axisRect()->setupFullAxesBox();

  // make left and bottom axes transfer their ranges to right and top axes:
  //connect(customPlot->xAxis, SIGNAL(rangeChanged(QCPRange)), customPlot->xAxis2, SLOT(setRange(QCPRange)));
  //connect(customPlot->yAxis, SIGNAL(rangeChanged(QCPRange)), customPlot->yAxis2, SLOT(setRange(QCPRange)));

  // setup a timer that repeatedly calls MainWindow::realtimeDataSlot:
  connect(&dataTimer, SIGNAL(timeout()), this, SLOT(realtimeDataSlot()));
  dataTimer.start(0); // Interval 0 means to refresh as fast as possible
  customPlot->legend->setVisible(true);



}

void MainWindow::realtimeDataSlot()
{
    //key的单位是秒
    double key = QDateTime::currentDateTime().toMSecsSinceEpoch()/1000.0;
    qsrand(QTime::currentTime().msec() + QTime::currentTime().second() * 10000);
    //使用随机数产生两条曲线
    double value0 = qrand() % 100;
    double value1 = qrand() % 80;
    if (ui->checkBox_temp->isChecked())
        ui->customPlot->graph(0)->addData(key, value0);//添加数据1到曲线1
    if (ui->checkBox_hui->isChecked())
        ui->customPlot->graph(1)->addData(key, value1);//添加数据2到曲线2
    //删除8秒之前的数据。这里的8要和下面设置横坐标宽度的8配合起来
    //才能起到想要的效果,可以调整这两个值,观察显示的效果。
    ui->customPlot->graph(0)->removeDataBefore(key-8);
    ui->customPlot->graph(1)->removeDataBefore(key-8);

  //自动设定graph(1)曲线y轴的范围,如果不设定,有可能看不到图像
//也可以用ui->customPlot->yAxis->setRange(up,low)手动设定y轴范围

    ui->customPlot->graph(0)->rescaleValueAxis();
    ui->customPlot->graph(1)->rescaleValueAxis(true);

    //这里的8,是指横坐标时间宽度为8秒,如果想要横坐标显示更多的时间
    //就把8调整为比较大到值,比如要显示60秒,那就改成60。
    //这时removeDataBefore(key-8)中的8也要改成60,否则曲线显示不完整。
    ui->customPlot->xAxis->setRange(key+0.25, 8, Qt::AlignRight);//设定x轴的范围
    ui->customPlot->replot();
}


已经说的很详细了,留作笔记

  • 0
    点赞
  • 46
    收藏
    觉得还不错? 一键收藏
  • 9
    评论
QCustomPlot是一个强大的C++图形库,可用于创建动态曲线图。如果您想要绘制X坐标为时间的动态曲线,可以按照以下步骤操作: 1.创建一个QCustomPlot对象并设置其X时间类型: ```c++ QCustomPlot *customPlot = new QCustomPlot(); customPlot->xAxis->setType(QCPAxis::atDateTime); ``` 2.创建一个QCPGraph对象并将其添加到QCustomPlot中: ```c++ QCPGraph *graph = customPlot->addGraph(); ``` 3.在每个时间点上添加数据。假设您有一个名为“data”的QVector对象,其中包含时间和值的数据: ```c++ for (int i=0; i<data.size(); ++i) { double time = QDateTime::fromString(data[i].time, "yyyy-MM-dd hh:mm:ss.zzz").toMSecsSinceEpoch(); double value = data[i].value; graph->addData(time, value); } ``` 在这里,我们将时间转换为毫秒级别,因为QCustomPlot使用毫秒作为时间单位。 4.为X设置时间格式。您可以使用QCustomPlot时间格式化字符串来设置您想要的日期和时间格式: ```c++ customPlot->xAxis->setDateTimeFormat("hh:mm:ss"); ``` 5.启用自适应X范围,以便在动态添加数据时自动扩展X范围: ```c++ customPlot->xAxis->setRange(QCPAxisTickerDateTime::dateTimeToKey(QDateTime::currentDateTime().addSecs(-60)), QCPAxisTickerDateTime::dateTimeToKey(QDateTime::currentDateTime())); customPlot->xAxis->setAutoTickStep(false); customPlot->xAxis->setTickStep(10); ``` 在这里,我们将X范围设置为最近60秒,然后启用手动刻度步长,并将其设置为10秒。 6.最后,您需要调用replot()函数来绘制动态曲线: ```c++ customPlot->replot(); ``` 完整代码示例: ```c++ QCustomPlot *customPlot = new QCustomPlot(); customPlot->xAxis->setType(QCPAxis::atDateTime); QCPGraph *graph = customPlot->addGraph(); for (int i=0; i<data.size(); ++i) { double time = QDateTime::fromString(data[i].time, "yyyy-MM-dd hh:mm:ss.zzz").toMSecsSinceEpoch(); double value = data[i].value; graph->addData(time, value); } customPlot->xAxis->setDateTimeFormat("hh:mm:ss"); customPlot->xAxis->setRange(QCPAxisTickerDateTime::dateTimeToKey(QDateTime::currentDateTime().addSecs(-60)), QCPAxisTickerDateTime::dateTimeToKey(QDateTime::currentDateTime())); customPlot->xAxis->setAutoTickStep(false); customPlot->xAxis->setTickStep(10); customPlot->replot(); ``` 希望这可以帮助您创建X坐标为时间的动态曲线!

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 9
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值