##// END OF EJS Templates
Updated QML bar model mapper property names
Tero Ahola -
r1496:46e4d06d4e0f
parent child
Show More
@@ -62,7 +62,7 Rectangle {
62 62 model: customModel
63 63 firstBarSetRow: 6
64 64 lastBarSetRow: 6
65 first: 2
65 firstColumn: 2
66 66 }
67 67 }
68 68 //![5]
@@ -48,7 +48,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
48 48 model: myCustomModel
49 49 firstBarSetRow: 1
50 50 lastBarSetRow: 3
51 first: 1
51 firstColumn: 1
52 52 }
53 53 }
54 54 \endcode
@@ -74,7 +74,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
74 74 Minimal and default value is: 0
75 75 */
76 76 /*!
77 \qmlproperty int BarModelMapper::first
77 \qmlproperty int BarModelMapper::firstColumn
78 78 Defines which column of the model contains the first values of the QBarSets in the series.
79 79 The default value is 0.
80 80 */
@@ -85,7 +85,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
85 85 Minimal and default value is: -1 (count limited by the number of rows in the model)
86 86 */
87 87 /*!
88 \qmlproperty int BarModelMapper::count
88 \qmlproperty int BarModelMapper::columnCount
89 89 Defines the number of rows of the model that are mapped as the data for QBarSeries. The default value is
90 90 -1 (count limited by the number of rows in the model)
91 91 */
@@ -48,7 +48,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
48 48 model: myCustomModel
49 49 firstBarSetColumn: 1
50 50 lastBarSetColumn: 3
51 first: 1
51 firstRow: 1
52 52 }
53 53 }
54 54 \endcode
@@ -82,7 +82,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
82 82 Minimal and default value is: 0
83 83 */
84 84 /*!
85 \qmlproperty int BarModelMapper::first
85 \qmlproperty int BarModelMapper::firstRow
86 86 Defines which row of the model contains the first values of the QBarSets in the series.
87 87 The default value is 0.
88 88 */
@@ -93,7 +93,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
93 93 Minimal and default value is: -1 (count limited by the number of rows in the model)
94 94 */
95 95 /*!
96 \qmlproperty int BarModelMapper::count
96 \qmlproperty int BarModelMapper::rowCount
97 97 Defines the number of rows of the model that are mapped as the data for QBarSeries. The default value is
98 98 -1 (count limited by the number of rows in the model)
99 99 */
General Comments 0
You need to be logged in to leave comments. Login now