一.前言
记录分享楼主学习QCustomplot的过程,楼主最近查看了坐标轴的一些属性设置,于是便记录下
属性设置不一定全,也不一定都对,不喜勿喷
二.坐标轴属性类别
1.设置坐标是否显示
ui->widget->xAxis2->setVisible(true); // 顶部坐标轴
ui->widget->xAxis->setVisible(true); // 底部坐标轴
ui->widget->yAxis->setVisible(true); // 左边坐标轴
ui->widget->yAxis2->setVisible(true); // 右边坐标轴
2.手动设置坐标轴的范围
ui->widget->xAxis->setRange(0,10);
ui->widget->yAxis->setRange(0,20);
ui->widget->xAxis2->setRange(0,30);
ui->widget->yAxis2->setRange(0,40);
3.设置坐标轴线条属性
ui->widget->xAxis->setBasePen(QPen(Qt::green,1,Qt::PenStyle::SolidLine));
ui->widget->xAxis2->setBasePen(QPen(Qt::gray,3,Qt::PenStyle::DashLine));
ui->widget->yAxis->setBasePen(QPen(Qt::red,5,Qt::PenStyle::DotLine));
ui->widget->yAxis2->setBasePen(QPen(Qt::blue,7,Qt::PenStyle::DashDotLine));
4.设置坐标系背景属性,QCustomplot提供了设置颜色背景或者图片背景
ui->widget->axisRect()->setBackground(Qt::lightGray);
// ui->widget->axisRect()->setBackground(QPixmap("://bag.png"));
5.设置背景网格线
// 设置背景网格线是否显示
ui->widget->xAxis->grid()->setVisible(true);
ui->widget->yAxis->grid()->setVisible(true);
// 设置背景网格线条属性
ui->widget->xAxis->grid()->setPen(QPen(Qt::green,2,Qt::PenStyle::SolidLine)); // 垂直网格线条属性
ui->widget->yAxis->grid()->setPen(QPen(Qt::yellow,2,Qt::PenStyle::SolidLine)); // 水平网格线条属性
ui->widget->xAxis->grid()->setSubGridPen(QPen(Qt::blue,2,Qt::PenStyle::DotLine));
ui->widget->yAxis->grid()->setSubGridPen(QPen(Qt::red,10,Qt::PenStyle::SolidLine));
6.设置坐标轴结束箭头文章来源:https://www.toymoban.com/news/detail-511183.html
// 坐标轴结束显示箭头
ui->widget->xAxis->setUpperEnding(QCPLineEnding::esSpikeArrow);
ui->widget->yAxis->setUpperEnding(QCPLineEnding::esSpikeArrow);
其他样式的,文档展示如下:
文章来源地址https://www.toymoban.com/news/detail-511183.html
到了这里,关于QCustomplot笔记(二)之QCustomplot 坐标轴属性设置的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!