QVXYModelMapper Class
The QVXYModelMapper class is a vertical model mapper for line, spline, and scatter series. 更多...
头文件: | #include <QVXYModelMapper> |
Instantiated By: | VXYModelMapper |
基类: | QXYModelMapper |
属性
- 1 个属性继承自 QObject
公有函数
QVXYModelMapper(QObject *parent = Q_NULLPTR) | |
int | firstRow() const |
QAbstractItemModel * | model() const |
int | rowCount() const |
QXYSeries * | series() const |
void | setFirstRow(int firstRow) |
void | setModel(QAbstractItemModel *model) |
void | setRowCount(int rowCount) |
void | setSeries(QXYSeries *series) |
void | setXColumn(int xColumn) |
void | setYColumn(int yColumn) |
int | xColumn() const |
int | yColumn() const |
- 32 个公有函数继承自 QObject
信号
void | firstRowChanged() |
void | modelReplaced() |
void | rowCountChanged() |
void | seriesReplaced() |
void | xColumnChanged() |
void | yColumnChanged() |
- 2 个信号继承自 QObject
其他继承的成员
- 1 个公有槽函数继承自 QObject
- 1 个公有变量继承自 QObject
- 10 个静态公有成员继承自 QObject
- 6 个受保护的函数继承自 QXYModelMapper
- 9 个受保护的函数继承自 QObject
- 2 个受保护的变量继承自 QObject
详细描述
The QVXYModelMapper class is a vertical model mapper for line, spline, and scatter series.
Model mappers enable using a data model derived from the QAbstractItemModel class as a data source for a chart. A vertical model mapper is used to create a connection between a line, spline, or scatter series and the data model that holds the consecutive data point coordinates in columns.
Both model and series properties can be used to manipulate the data. The model mapper keeps the series and the data model in sync.
参见 QHXYModelMapper and QXYSeries.
属性
firstRow : int
This property holds the row of the model that contains the data for the first point of the series.
The minimum and default value is 0.
访问函数:
int | firstRow() const |
void | setFirstRow(int firstRow) |
Notifier signal:
void | firstRowChanged() |
model : QAbstractItemModel *
This property holds the model that is used by the mapper.
访问函数:
QAbstractItemModel * | model() const |
void | setModel(QAbstractItemModel *model) |
Notifier signal:
void | modelReplaced() |
rowCount : int
This property holds the number of rows of the model that are mapped as the data for series.
The minimum and default value is -1 (the number is limited by the number of rows in the model).
访问函数:
int | rowCount() const |
void | setRowCount(int rowCount) |
Notifier signal:
void | rowCountChanged() |
series : QXYSeries *
This property holds the series that is used by the mapper.
All the data in the series is discarded when it is set to the mapper. When a new series is specified, the old series is disconnected (but it preserves its data).
访问函数:
QXYSeries * | series() const |
void | setSeries(QXYSeries *series) |
Notifier signal:
void | seriesReplaced() |
xColumn : int
This property holds the column of the model that contains the x-coordinates of data points.
The default value is -1 (invalid mapping).
访问函数:
int | xColumn() const |
void | setXColumn(int xColumn) |
Notifier signal:
void | xColumnChanged() |
yColumn : int
This property holds the column of the model that contains the y-coordinates of data points.
The default value is -1 (invalid mapping).
访问函数:
int | yColumn() const |
void | setYColumn(int yColumn) |
Notifier signal:
void | yColumnChanged() |
成员函数
QVXYModelMapper::QVXYModelMapper(QObject *parent = Q_NULLPTR)
Constructs a mapper object that is a child of parent.
[signal]
void QVXYModelMapper::firstRowChanged()
This signal is emitted when the first row changes.
Note: Notifier signal for property firstRow.
[signal]
void QVXYModelMapper::modelReplaced()
This signal is emitted when the model that the mapper is connected to changes.
Note: Notifier signal for property model.
[signal]
void QVXYModelMapper::rowCountChanged()
This signal is emitted when the number of rows changes.
Note: Notifier signal for property rowCount.
[signal]
void QVXYModelMapper::seriesReplaced()
This signal is emitted when the series that the mapper is connected to changes.
Note: Notifier signal for property series.
[signal]
void QVXYModelMapper::xColumnChanged()
This signal is emitted when the column that contains the x-coordinates of data points changes.
Note: Notifier signal for property xColumn.
[signal]
void QVXYModelMapper::yColumnChanged()
This signal is emitted when the column that contains the y-coordinates of data points changes.
Note: Notifier signal for property yColumn.