CustomPlot 画曲线

1.建立一个MainWindow
2.将qcustomplot.cpp与qcustomplot.h(可以从官网Qt Plotting Widget QCustomPlot - Introduction下载)拷贝到工程目录下
3.右击工程,将上面的文件添加进去
4.点开新建工程的.pro,greaterThan(QT_MAJOR_VERSION, 4): QT += widgets后添加 printsupport
5.在mainwindows.h下添加#include "qcustomplot.h"
6.在mainwindows.ui里添加Widget控件
7.右击widget->promote to(提升为)->Promoted class name:QCustomPlot->Add->勾选添加的类->Promote。上面添加错了,可以选中widget右击取消提升,再pomote to,将添加的class “-”掉。再重新添加QCustomPlot。
8.mainwindow.h里实例化私有对象QCustomplot *customplot;
9.添加一个GroupBox模拟实时数据,包含两个linEdit与一个按钮添加数据

简单应用

(1190条消息) QCustomPlot绘制曲线资源-CSDN文库

你可能感兴趣的:(qt,开发语言)