QVXYModelMapper Class▲
-
Header: QVXYModelMapper
-
Inherited By:
-
Instantiated By: qml-qtcharts-vxymodelmapper.xml
-
Inherits: QXYModelMapper
Detailed Description▲
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 has X and Y columns for the coordinates and holds the data points for the XYSeries as rows. A TableModel is a natural choice for the model.
Both model and series properties can be used to manipulate the data. The model mapper keeps the series and the data model in sync.
See Also▲
See also QHXYModelMapper, QXYSeries, Model Data Example
Property Documentation▲
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.
Access functions:
-
int firstRow() const
-
void setFirstRow(int firstRow)
Notifier signal:
-
void firstRowChanged()
model : QAbstractItemModel*▲
This property holds the model that is used by the mapper.
Access functions:
-
*model() const
-
void setModel( *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).
Access functions:
-
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).
Access functions:
-
*series() const
-
void setSeries( *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).
Access functions:
-
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).
Access functions:
-
int yColumn() const
-
void setYColumn(int yColumn)
Notifier signal:
-
void yColumnChanged()
Member Function Documentation▲
[explicit] QVXYModelMapper::QVXYModelMapper(QObject *parent = nullptr)▲
Constructs a mapper object that is a child of parent.
void QVXYModelMapper::firstRowChanged()▲
This signal is emitted when the first row changes.
Notifier signal for property firstRow.
void QVXYModelMapper::modelReplaced()▲
This signal is emitted when the model that the mapper is connected to changes.
Notifier signal for property model.
void QVXYModelMapper::rowCountChanged()▲
This signal is emitted when the number of rows changes.
Notifier signal for property rowCount.
void QVXYModelMapper::seriesReplaced()▲
This signal is emitted when the series that the mapper is connected to changes.
Notifier signal for property series.
void QVXYModelMapper::xColumnChanged()▲
This signal is emitted when the column that contains the x-coordinates of data points changes.
Notifier signal for property xColumn.
void QVXYModelMapper::yColumnChanged()▲
This signal is emitted when the column that contains the y-coordinates of data points changes.
Notifier signal for property yColumn.