QLineSeries Class
The QLineSeries class presents data in line charts. 更多...
头文件: | #include <QLineSeries> |
Instantiated By: | LineSeries |
基类: | QXYSeries |
派生类: |
公有函数
QLineSeries(QObject *parent = Q_NULLPTR) | |
~QLineSeries() |
重新实现的公有函数
virtual QAbstractSeries::SeriesType | type() const |
- 39 个公有函数继承自 QXYSeries
- 15 个公有函数继承自 QAbstractSeries
- 32 个公有函数继承自 QObject
其他继承的成员
- 7 个属性继承自 QXYSeries
- 5 个属性继承自 QAbstractSeries
- 1 个属性继承自 QObject
- 1 个公有槽函数继承自 QObject
- 17 个信号继承自 QXYSeries
- 4 个信号继承自 QAbstractSeries
- 2 个信号继承自 QObject
- 1 个公有变量继承自 QObject
- 10 个静态公有成员继承自 QObject
- 9 个受保护的函数继承自 QObject
- 2 个受保护的变量继承自 QObject
详细描述
The QLineSeries class presents data in line charts.
A line chart is used to show information as a series of data points connected by straight lines.
Creating a basic line chart is simple:
QLineSeries* series = new QLineSeries(); series->append(0, 6); series->append(2, 4); ... chart->addSeries(series);
成员函数
QLineSeries::QLineSeries(QObject *parent = Q_NULLPTR)
Constructs an empty series object that is a child of parent. When the series object is added to a QChartView or QChart instance, the ownership is transferred.
QLineSeries::~QLineSeries()
Destroys the object. Series added to QChartView or QChart instances are owned by the instances and deleted when the instances are destroyed.
[virtual]
QAbstractSeries::SeriesType QLineSeries::type() const
Reimplemented from QAbstractSeries::type().