1 Star 0 Fork 2

上位机/上位机

forked from 梦之往兮/上位机 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
realtimedatawidget.h 830 Bytes
一键复制 编辑 原始数据 按行查看 历史
梦之往兮 提交于 2024-05-13 22:36 . 成功实现动态绘图
// realtime_data_widget.h
#ifndef REALTIME_DATA_WIDGET_H
#define REALTIME_DATA_WIDGET_H
#include <QWidget>
#include <QTimer>
#include <QVector>
#include <qcustomplot.h>
class RealTimeDataWidget : public QWidget {
Q_OBJECT
public:
explicit RealTimeDataWidget(QWidget *parent = nullptr);
//~RealTimeDataWidget();
void setYAxisLabel(const QString &label) ;
// 添加新的数据点
void addDataPoint(double x, double y);
protected:
// 绘制事件
//void paintEvent(QPaintEvent *event) override;
private:
// 存储数据点的向量
QVector<QPointF> dataPoints;
QCustomPlot *plot; // 声明 plot 成员变量
// 定时器用于更新绘图
QVector<double> xData; // 声明 xData 变量
QVector<double> yData; // 声明 yData 变量
};
#endif // REALTIME_DATA_WIDGET_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/upper-computer_1688/upper-computer_1.git
[email protected]:upper-computer_1688/upper-computer_1.git
upper-computer_1688
upper-computer_1
上位机
master

搜索帮助