Qt之qcustomplot绘图总结
1、绘图类: QCPGraph : QCPCurve: 用于曲线图,可以有循环 QCPBars:柱形图,如果有多个 QCPBars ,可以依次重叠 QCPStatisticalBox(需实例化): QCPColorMap(实例化): QCPFinancial(实例化): 2、绘图的基本函数: QCustomPlot有四个QCPAxis成员变量,四个坐标轴:xAxis(下)yAxis(左)xAxis2(上)yAxis2(右) setBasePen:设置基础画笔 setTickPen:设置刻度画笔 setTickLength:设置刻度长度 setSubTickLength: setSubTickPen: setTickLabelFont:设置刻度label字体 setTickLabelPadding:设置标签间距 setLabelPadding:设置标签 setRangeReversed: setLineStyle((QCPGraph::LineStyle)i);//设置线性 setScatterStyle(QCPScatterStyle(QCPScatterStyle::ssCircle, 5));//设置每个节点数据绘制风格,默认是空,这里设置为空心圆 rescaleAxes(true);//坐标轴自适应 setTicks(true);//y轴显示刻度 setTickLabels