VBoxPlotModelMapper QML Type

Vertical model mapper for box plot series. More...

Import Statement: import QtCharts 2.1
Instantiates: QVBoxPlotModelMapper

Properties

Detailed Description

VBoxPlotModelMapper allows you to use your own QAbstractItemModel derived model with data in columns as a data source for any box-and-whiskers series. It is possible to use both QAbstractItemModel and box-and-whiskers series data API to manipulate data. VBoxPlotModelMapper keeps the series and the model in sync.

The following QML example would create a box-and-whiskers series with three box sets (assuming the model has at least four columns). Each box set would contain data starting from row 1. The name of a set would be defined by the horizontal header (of the column).

BoxPlotSeries {
    VBoxPlotModelMapper {
        model: myCustomModel // QAbstractItemModel derived implementation
        firstBoxSetColumn: 1
        lastBoxSetColumn: 3
        firstRow: 1
    }
}

Property Documentation

firstRow : int

Defines which row of the model contains the first values of the QBoxSets in the series. The default value is 0.


model : SomeModel

The QAbstractItemModel based model that is used by the mapper. You need to implement the model and expose it to QML.

Note: the model has to support adding/removing rows/columns and modifying the data of the cells.


Defines the AbstractBarSeries based object that is used by the mapper. All the data in the series is discarded when it is set to the mapper. When new series is specified the old series is disconnected (it preserves its data).


© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.