1、在工程文件"*.pro"中添加"charts"组件
在工程文件"*.pro"中添加"charts"组件,同时在工程文件添加qcustomplot类。
QT += core gui printsupport charts
下载qcustomplot类。
网址:https://www.qcustomplot.com/index.php/download
2、Widget提升为QChartView或用QGraphicsView绘图
(1) Widget提升为QChartView
(2)QGraphicsView绘制曲线
QGraphicsView也能绘制曲线,目前还不知道两者的区别。
3、mainwindow.h中包含相关头文件
#include<QtCharts/QChart> //动态曲线类
using namespace QtCharts;
4、绘制的曲线效果
(1)Widget提升为QChartView绘制曲线图效果
(2)QGraphicsView绘制曲线图效果
5、类似代码参考链接
链接1