QCustomPlot
文章平均质量分 88
哀歌与世无争
精通C/C++、Java、C#、VB、HTML、JavaScript等单词的拼写,熟练Matlab、Altium Designer、Keil、Visual Studio、PhotoShop、Office等软件的安装卸载,掌握Windows、Android 、Linux等操作系统的开关机。
展开
-
QCustomPlot使用心得三:线样式,点样式
一、线宽、样式、颜色通过画笔QPen设置线的线宽、样式和颜色,线样式Qt::PenStyle有几个枚举值,实线虚线等。代码例子: QPen pen; pen.setWidth(3);//线宽 // 添加Graph,1条曲线使用一个Graph customPlot->addGraph(); pen.setStyle(Qt::PenStyl...原创 2019-08-26 22:27:01 · 19343 阅读 · 13 评论 -
QCustomPlot使用心得二:轴范围调整,rescaleAxes 用法
官网图例https://www.qcustomplot.com/index.php/demos/simpledemo QCustomPlot* customPlot = ui->customPlot_6; // 添加两个graph customPlot->addGraph(); customPlot->graph(0)->setP...原创 2019-08-26 22:25:39 · 19746 阅读 · 3 评论 -
QCustomPlot使用心得四:动态曲线和绘图效率测试
一、先看官方例子https://www.qcustomplot.com/index.php/demos/realtimedatademo:头文件添加: QTimer dataTimer;private slots: void realtimeDataSlot();构造函数里: QCustomPlot* customPlot = ui->cus...原创 2019-08-28 22:17:16 · 23246 阅读 · 28 评论 -
QCustomPlot使用心得一:安装和使用
QCustomPlot是一个基于Qt C++的图形库,用于绘制和数据可视化 - 制作漂亮的2D图 - 曲线图、趋势图、坐标图、柱状图等。有详细的例程和帮助文档,使用方便。一、下载到官网https://www.qcustomplot.com/index.php/download下载最新版本二、安装帮助文档1.下载后解压,有如下文档(1)帮助文档:document...原创 2019-08-16 11:41:29 · 3395 阅读 · 2 评论 -
QCustomPlot使用心得五:坐标轴常用属性设置
先看轴部分的名称约定,根据名称就可以修改对应的属性了1.显示坐标轴默认只显示左y轴和下边的x轴,调用setVisible(bool)设置轴是否显示 customplot->yAxis2->setVisible(true);//显示y轴2 customplot->xAxis2->setVisible(true);//显示x轴2调用se...原创 2019-09-03 09:14:05 · 55464 阅读 · 26 评论 -
QCustomPlot使用心得六:框选放大,拖动,选中数据
一、先看效果图框取数据后,还可以按Ctrl追加数据点二、原理qcustomPlot是有鼠标选择框功能的,只是默认是不使能,所以平常拖动鼠标没有反应,调用setSelectionRectMode可以开启选框,如下开启: customPlot->setSelectionRectMode(QCP::SelectionRectMode::srmZoom);//模式...原创 2019-09-05 11:40:15 · 16479 阅读 · 30 评论