QCustomPlot 坐标轴常用属性设置

Posted 七 六 伍

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QCustomPlot 坐标轴常用属性设置相关的知识,希望对你有一定的参考价值。

1常用的数字表示格式
setNumberFormat(“g”) 数值小的时候用固定格式,数值大使用科学计数

setNumberFormat(“gb”) 数值小的时候用固定格式,数值大使用漂亮的10进制幂的指数形式

setNumberFormat(“gbc”) 在上面的基础上乘号显示×

setNumberFormat(“fc”) 非法格式,格式减少到’f’

setNumberFormat(“hello”) 非法格式,因为第一个字符不是’e’, ‘e’, ‘f’, ‘g’或’g’。当前格式代码将不会更改

默认设置刻度

customPlot->xAxis->setNumberFormat("g");//g灵活的格式,b漂亮的指数形式,c乘号改成×
 customPlot->xAxis->setNumberPrecision(1);//精度1


setNumberFormat(“f”)

2:时间表示格式 (2.0版本)
QSharedPointer dateTick(new QCPAxisTickerDateTime);
dateTicker->setTimeFormat(“hh:mm:ss.zz\\n第%d天”);//时间格式,参考本函数的帮助文档 z是代表毫秒 d代表天数 h小时 m 分钟 s秒
ui->customPlot->xAxis->setTicker(dateTick);

需要源码的 留下邮箱可以发给你

以上是关于QCustomPlot 坐标轴常用属性设置的主要内容,如果未能解决你的问题,请参考以下文章

QCustomPlot 曲线各种属性详细介绍

QCustomPlot 曲线各种属性详细介绍

QCustomPlot 曲线各种属性详细介绍

QCustomplot使用分享 坐标轴和网格线

怎么给QCustomPlot 坐标轴添加单位

qcustomplot 实时图形 怎么让图不走了