赞
踩
它是QXYSeries子类,用于绘制二维数据点的折线图,有以下常用方法。
1.设置名称
- void setName(const QString &name)
2.设置序列显隐、透明度、颜色、画笔、画刷
- void setColor()
-
- void setPen()
-
- void show()
-
- void hide()
-
- void setVisible()
-
- void setBrush()
-
- void setOpacity(); 0表示完全透明 1表示不透明
3.对数据点的设置
- //设置数据点的可见性
- void setPointsVisible()
-
- //添加一个数据点到序列
- void append()
-
- //清空
- void clear()
-
- //删除,从某个位置开始,删除指定个数的数据点
- void removePoints()
-
- //返回数据点列表
- QList<QPointF> points()
4.数据点标签的设置
- //设置可见性
- void setPointLabelsVisible()
-
- //设置文字颜色
- void setPointLabelsColor()
-
- //字体
- void setPointLabelsFont()
-
- //格式
- void setPointLabelsFormat()
源码
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。