QCustomPlot 坐标轴以及刻度常用属性设置
前言在使用QCustomPlot时,其默认的参数可能使得图形的整体看上去并不美观,需要对相关属性进行重新设置,为方便后续使用,进行相关参数设置函数的资料整理。1、 坐标轴与轴相关参数名称如图所示:相关代码:customPlot->yAxis->setLabelPadding(value);customPlot->yAxis->setPadding(value);custom
·
前言
在使用QCustomPlot
时,其默认的参数可能使得图形的整体看上去并不美观,需要对相关属性进行重新设置,为方便后续使用,进行相关参数设置函数的资料整理。
坐标轴
与轴相关参数名称如图所示:
相关代码:
customPlot->yAxis->setLabelPadding(value);
customPlot->yAxis->setPadding(value);
customPlot->yAxis->setTickLabelPadding()(value);
customPlot->yAxis->setsetTickLengthOut(value);
customPlot->yAxis->setOffset()(value);
····
// x轴与y轴类似
显示坐标轴
默认只显示左y轴和下边的x轴,调用setVisible(bool)
设置轴是否显示
customplot->xAxis2->setVisible(true);//显示x轴2, 即上侧轴
customplot->yAxis2->setVisible(true);//显示y轴2,即右侧轴
调用setupFullAxesBox,如果某一边没有轴会生成一个,并且四边的轴显示都设置true
customplot->axisRect()->setupFullAxesBox();//四边安装轴并显示
设置坐标轴标签(标题以及标题字体)
customPlot->xAxis->setLabel("t");
customPlot->yAxis->setLabel("v");
customPlot->xAxis->setLabel(QFont("font",font-size));
customPlot->yAxis->setLabel(QFont("font",font-size));
坐标轴刻度相关设置
yAxis->setTickLabelSide(QCPAxis::lsOutside);//设置轴刻度显示的方面,选项为in或者out
yAxis->setTickLabelPadding();//设置轴刻度与轴之间的距离
yAxis->setTickLabelRotation(40);//设置轴刻度的显示方向为倾斜向下
yAxis->setTickLabels(false);//设置轴刻度是否显示
yAxis->setTickLength(20,0); //设置轴刻度的长度
yAxis->setTickStep(1);
yAxis->setAutoTickStep(false);//设置轴刻度的一跳为1
设置颜色
customPlot->graph(0)->setPen(QPen(Qt::blue)); // 第一个图形的线颜色为蓝色
customPlot->graph(0)->setBrush(QBrush(QColor(0, 0, 255, 0))); // 第一个图形与0轴的区域将被半透明的蓝色填充,最后一个参数表示透明度
待更新········
更多推荐
已为社区贡献1条内容
所有评论(0)