一、基本图形元件
1、QCustomPlot提供文字、箭头、连线、图片等图形元件,以满足用户需要。它们都是继承于QCPAbstractItem这个基类。
继承关系如下:
看官网上的例子:// add the text label at the top:
QCPItemText *textLabel = new QCPItemText(customPlot);
customPlot->add...
分类:
其他好文 时间:
2015-06-11 21:20:36
阅读次数:
400
一、改变范围QCustomPlot *customplot;
customplot->setInteraction(QCP::iRangeDrag,true);使控件能够拖拉。customplot->axisRect()->setRangeDrag(Qt::Vertical);// Qt::Horizontal使控件只能在某一方向上拖拉,默认是水平和垂直都支持。customplot->setInte...
分类:
其他好文 时间:
2015-06-09 06:15:46
阅读次数:
495