@@ -32,6 +32,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||||
32 | \brief part of QtCommercial chart API. |
|
32 | \brief part of QtCommercial chart API. | |
33 | \mainclass |
|
33 | \mainclass | |
34 |
|
34 | |||
|
35 | Model mappers allow you to use QAbstractItemModel derived models as a data source for a chart series. | |||
35 | The instance of this class cannot be created directly. QHBarModelMapper of QVBarModelMapper should be used instead. This class is used to create a connection between QBarSeries and QAbstractItemModel derived model object. |
|
36 | The instance of this class cannot be created directly. QHBarModelMapper of QVBarModelMapper should be used instead. This class is used to create a connection between QBarSeries and QAbstractItemModel derived model object. | |
36 | Curently it is NOT possible to use both QAbstractItemModel and QBarSeries model API. |
|
37 | Curently it is NOT possible to use both QAbstractItemModel and QBarSeries model API. | |
37 | When the series is set to the mapper the QBarSeries and QBarSet API that affect the data (append, setValue, remove) should not be used. |
|
38 | When the series is set to the mapper the QBarSeries and QBarSet API that affect the data (append, setValue, remove) should not be used. |
@@ -27,6 +27,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||||
27 | \brief part of QtCommercial chart API. |
|
27 | \brief part of QtCommercial chart API. | |
28 | \mainclass |
|
28 | \mainclass | |
29 |
|
29 | |||
|
30 | Model mappers allow you to use QAbstractItemModel derived models as a data source for a chart series. | |||
30 | Horizontal model mapper is used to create a connection between QBarSeries and QAbstractItemModel derived model object. |
|
31 | Horizontal model mapper is used to create a connection between QBarSeries and QAbstractItemModel derived model object. | |
31 | Curently it is NOT possible to use both QAbstractItemModel and QBarSeries model API. |
|
32 | Curently it is NOT possible to use both QAbstractItemModel and QBarSeries model API. | |
32 | When the series is set to the mapper the QBarSeries and QBarSet API that affect the data (append, setValue, remove) should not be used. |
|
33 | When the series is set to the mapper the QBarSeries and QBarSet API that affect the data (append, setValue, remove) should not be used. |
@@ -27,6 +27,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||||
27 | \brief part of QtCommercial chart API. |
|
27 | \brief part of QtCommercial chart API. | |
28 | \mainclass |
|
28 | \mainclass | |
29 |
|
29 | |||
|
30 | Model mappers allow you to use QAbstractItemModel derived models as a data source for a chart series. | |||
30 | Vertical model mapper is used to create a connection between QBarSeries and QAbstractItemModel derived model object. |
|
31 | Vertical model mapper is used to create a connection between QBarSeries and QAbstractItemModel derived model object. | |
31 | Curently it is NOT possible to use both QAbstractItemModel and QBarSeries model API. |
|
32 | Curently it is NOT possible to use both QAbstractItemModel and QBarSeries model API. | |
32 | When the series is set to the mapper the QBarSeries and QBarSet API that affect the data (append, setValue, remove) should not be used. |
|
33 | When the series is set to the mapper the QBarSeries and QBarSet API that affect the data (append, setValue, remove) should not be used. |
@@ -27,6 +27,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||||
27 | \brief part of QtCommercial chart API. |
|
27 | \brief part of QtCommercial chart API. | |
28 | \mainclass |
|
28 | \mainclass | |
29 |
|
29 | |||
|
30 | Model mappers allow you to use QAbstractItemModel derived models as a data source for a chart series. | |||
30 | Horizontal model mapper is used to create a connection between QPieSeries and QAbstractItemModel derived model object that keeps the consecutive pie slices data in rows. |
|
31 | Horizontal model mapper is used to create a connection between QPieSeries and QAbstractItemModel derived model object that keeps the consecutive pie slices data in rows. | |
31 | It is possible to use both QAbstractItemModel and QPieSeries model API. QHPieModelMapper makes sure that Pie and the model are kept in sync. |
|
32 | It is possible to use both QAbstractItemModel and QPieSeries model API. QHPieModelMapper makes sure that Pie and the model are kept in sync. | |
32 | NOTE: used model has to support adding/removing rows/columns and modifying the data of the cells. |
|
33 | NOTE: used model has to support adding/removing rows/columns and modifying the data of the cells. |
@@ -31,6 +31,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||||
31 | \brief part of QtCommercial chart API. |
|
31 | \brief part of QtCommercial chart API. | |
32 | \mainclass |
|
32 | \mainclass | |
33 |
|
33 | |||
|
34 | Model mappers allow you to use QAbstractItemModel derived models as a data source for a chart series. | |||
34 | The instance of this class cannot be created directly. QHPieModelMapper of QVPieModelMapper should be used instead. This class is used to create a connection between QPieSeries and QAbstractItemModel derived model object. |
|
35 | The instance of this class cannot be created directly. QHPieModelMapper of QVPieModelMapper should be used instead. This class is used to create a connection between QPieSeries and QAbstractItemModel derived model object. | |
35 | It is possible to use both QAbstractItemModel and QPieSeries model API. QPieModelMapper makes sure that Pie and the model are kept in sync. |
|
36 | It is possible to use both QAbstractItemModel and QPieSeries model API. QPieModelMapper makes sure that Pie and the model are kept in sync. | |
36 | NOTE: used model has to support adding/removing rows/columns and modifying the data of the cells. |
|
37 | NOTE: used model has to support adding/removing rows/columns and modifying the data of the cells. |
@@ -27,6 +27,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||||
27 | \brief part of QtCommercial chart API. |
|
27 | \brief part of QtCommercial chart API. | |
28 | \mainclass |
|
28 | \mainclass | |
29 |
|
29 | |||
|
30 | Model mappers allow you to use QAbstractItemModel derived models as a data source for a chart series. | |||
30 | Vertical model mapper is used to create a connection between QPieSeries and QAbstractItemModel derived model object that keeps the consecutive pie slices data in columns. |
|
31 | Vertical model mapper is used to create a connection between QPieSeries and QAbstractItemModel derived model object that keeps the consecutive pie slices data in columns. | |
31 | It is possible to use both QAbstractItemModel and QPieSeries model API. QVPieModelMapper makes sure that Pie and the model are kept in sync. |
|
32 | It is possible to use both QAbstractItemModel and QPieSeries model API. QVPieModelMapper makes sure that Pie and the model are kept in sync. | |
32 | NOTE: used model has to support adding/removing rows/columns and modifying the data of the cells. |
|
33 | NOTE: used model has to support adding/removing rows/columns and modifying the data of the cells. |
@@ -27,6 +27,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||||
27 | \brief part of QtCommercial chart API. |
|
27 | \brief part of QtCommercial chart API. | |
28 | \mainclass |
|
28 | \mainclass | |
29 |
|
29 | |||
|
30 | Model mappers allow you to use QAbstractItemModel derived models as a data source for a chart series. | |||
30 | Horizontal model mapper is used to create a connection between QXYSeries and QAbstractItemModel derived model object. |
|
31 | Horizontal model mapper is used to create a connection between QXYSeries and QAbstractItemModel derived model object. | |
31 | It is possible to use both QAbstractItemModel and QXYSeries model API. QXYModelMapper makes sure that QXYSeries and the model are kept in sync. |
|
32 | It is possible to use both QAbstractItemModel and QXYSeries model API. QXYModelMapper makes sure that QXYSeries and the model are kept in sync. | |
32 | NOTE: used model has to support adding/removing rows/columns and modifying the data of the cells. |
|
33 | NOTE: used model has to support adding/removing rows/columns and modifying the data of the cells. |
@@ -27,6 +27,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||||
27 | \brief part of QtCommercial chart API. |
|
27 | \brief part of QtCommercial chart API. | |
28 | \mainclass |
|
28 | \mainclass | |
29 |
|
29 | |||
|
30 | Model mappers allow you to use QAbstractItemModel derived models as a data source for a chart series. | |||
30 | Vertical model mapper is used to create a connection between QXYSeries and QAbstractItemModel derived model object. |
|
31 | Vertical model mapper is used to create a connection between QXYSeries and QAbstractItemModel derived model object. | |
31 | It is possible to use both QAbstractItemModel and QXYSeries model API. QXYModelMapper makes sure that QXYSeries and the model are kept in sync. |
|
32 | It is possible to use both QAbstractItemModel and QXYSeries model API. QXYModelMapper makes sure that QXYSeries and the model are kept in sync. | |
32 | NOTE: used model has to support adding/removing rows/columns and modifying the data of the cells. |
|
33 | NOTE: used model has to support adding/removing rows/columns and modifying the data of the cells. |
@@ -30,6 +30,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||||
30 | \brief part of QtCommercial chart API. |
|
30 | \brief part of QtCommercial chart API. | |
31 | \mainclass |
|
31 | \mainclass | |
32 |
|
32 | |||
|
33 | Model mappers allow you to use QAbstractItemModel derived models as a data source for a chart series. | |||
33 | The instance of this class cannot be created directly. QHXYModelMapper of QVXYModelMapper should be used instead. This class is used to create a connection between QXYSeries and QAbstractItemModel derived model object. |
|
34 | The instance of this class cannot be created directly. QHXYModelMapper of QVXYModelMapper should be used instead. This class is used to create a connection between QXYSeries and QAbstractItemModel derived model object. | |
34 | It is possible to use both QAbstractItemModel and QXYSeries model API. QXYModelMapper makes sure that QXYSeries and the model are kept in sync. |
|
35 | It is possible to use both QAbstractItemModel and QXYSeries model API. QXYModelMapper makes sure that QXYSeries and the model are kept in sync. | |
35 | NOTE: used model has to support adding/removing rows/columns and modifying the data of the cells. |
|
36 | NOTE: used model has to support adding/removing rows/columns and modifying the data of the cells. |
General Comments 0
You need to be logged in to leave comments.
Login now