qt画二维图表、QCustomPlot
程序员文章站
2024-01-03 13:55:16
...
catalog
Base
官网文档: https://www.qcustomplot.com/documentation/index.html
1, 将qcustomplot.h 和 qcustomplot.cpp,放到 你的项目目录下
(即,和你的main.cpp 放在一起)
2, 在.pro文件里, 加入: QT += printsupport
HEADERS += qcustomplot.h
SOURCES += qcustomplot.cpp
3, 在你的ui里,放一个“widget” -> “提升为..” -> 在"提升的类名称"中 写:QCustomPlot,点击添加
(比如,你新添加的这个子widget,名称为: customPlot)
' 此时,你运行项目, 就已经可以发现: 你的这个子widget,就是一个坐标轴 '
4, 在你的业务类里, #include "qcustomplot.h"
推荐阅读