The QVPieModelMapper is a vertical model mapper for pie series. More...
Header: | #include <QVPieModelMapper> |
Instantiated By: | VPieModelMapper |
Inherits: | QPieModelMapper |
|
|
QVPieModelMapper(QObject *parent = nullptr) | |
int | firstRow() const |
int | labelsColumn() const |
QAbstractItemModel * | model() const |
int | rowCount() const |
QPieSeries * | series() const |
void | setFirstRow(int firstRow) |
void | setLabelsColumn(int labelsColumn) |
void | setModel(QAbstractItemModel *model) |
void | setRowCount(int rowCount) |
void | setSeries(QPieSeries *series) |
void | setValuesColumn(int valuesColumn) |
int | valuesColumn() const |
void | firstRowChanged() |
void | labelsColumnChanged() |
void | modelReplaced() |
void | rowCountChanged() |
void | seriesReplaced() |
void | valuesColumnChanged() |
The QVPieModelMapper is a vertical model mapper for pie 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 data model and QPieSeries, so that each row in the data model defines a pie slice and each column maps to the label or the value of the pie slice.
Both model and pie series properties can be used to manipulate the data. The model mapper keeps the pie series and the data model in sync.
This property holds the row of the model that contains the first slice value.
The minimum and default value is 0.
Access functions:
int | firstRow() const |
void | setFirstRow(int firstRow) |
Notifier signal:
void | firstRowChanged() |
This property holds the column of the model that is kept in sync with the labels of the pie's slices.
The default value is -1 (invalid mapping).
Access functions:
int | labelsColumn() const |
void | setLabelsColumn(int labelsColumn) |
Notifier signal:
void | labelsColumnChanged() |
This property holds the model that is used by the mapper.
Access functions:
QAbstractItemModel * | model() const |
void | setModel(QAbstractItemModel *model) |
Notifier signal:
void | modelReplaced() |
This property holds the number of rows of the model that are mapped as the data for a pie series.
The minimum and default value is -1 (number limited by the number of rows in the model).
Access functions:
int | rowCount() const |
void | setRowCount(int rowCount) |
Notifier signal:
void | rowCountChanged() |
This property holds the pie 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:
QPieSeries * | series() const |
void | setSeries(QPieSeries *series) |
Notifier signal:
void | seriesReplaced() |
This property holds the column of the model that is kept in sync with the values of the pie's slices.
The default value is -1 (invalid mapping).
Access functions:
int | valuesColumn() const |
void | setValuesColumn(int valuesColumn) |
Notifier signal:
void | valuesColumnChanged() |
Constructs a mapper object that is a child of parent.
[signal]
void QVPieModelMapper::firstRowChanged()This signal is emitted when the first row changes.
Note: Notifier signal for property firstRow.
Returns the column of the model that is kept in sync with the labels of the pie's slices.
Note: Getter function for property labelsColumn.
See also setLabelsColumn().
[signal]
void QVPieModelMapper::labelsColumnChanged()This signal is emitted when the labels column changes.
Note: Notifier signal for property labelsColumn.
[signal]
void QVPieModelMapper::modelReplaced()This signal is emitted when the model that the mapper is connected to changes.
Note: Notifier signal for property model.
[signal]
void QVPieModelMapper::rowCountChanged()This signal is emitted when the number of rows changes.
Note: Notifier signal for property rowCount.
[signal]
void QVPieModelMapper::seriesReplaced()This signal is emitted when the series that the mapper is connected to changes.
Note: Notifier signal for property series.
Sets the model column that is kept in sync with the pies slices' labels to labelsColumn.
Note: Setter function for property labelsColumn.
See also labelsColumn().
Sets the model column that is kept in sync with the pie slices' values to valuesColumn.
Note: Setter function for property valuesColumn.
See also valuesColumn().
Returns the column of the model that is kept in sync with the values of the pie's slices.
Note: Getter function for property valuesColumn.
See also setValuesColumn().
[signal]
void QVPieModelMapper::valuesColumnChanged()This signal is emitted when the values column changes.
Note: Notifier signal for property valuesColumn.