@@ -140,7 +140,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||||
140 | \sa append(), insert() |
|
140 | \sa append(), insert() | |
141 | */ |
|
141 | */ | |
142 | /*! |
|
142 | /*! | |
143 | \qmlsignal AbstractBarSeries::onAdded(BarSet barset) |
|
143 | \qmlsignal AbstractBarSeries::onBarsetsAdded(BarSet barset) | |
144 | Emitted when \a barset has been added to the series. |
|
144 | Emitted when \a barset has been added to the series. | |
145 | */ |
|
145 | */ | |
146 |
|
146 | |||
@@ -150,7 +150,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||||
150 | \sa remove() |
|
150 | \sa remove() | |
151 | */ |
|
151 | */ | |
152 | /*! |
|
152 | /*! | |
153 | \qmlsignal AbstractBarSeries::onRemoved(BarSet barset) |
|
153 | \qmlsignal AbstractBarSeries::onBarsetsRemoved(BarSet barset) | |
154 | Emitted when \a barset has been removed from the series. |
|
154 | Emitted when \a barset has been removed from the series. | |
155 | */ |
|
155 | */ | |
156 |
|
156 | |||
@@ -161,11 +161,10 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||||
161 |
|
161 | |||
162 | /*! |
|
162 | /*! | |
163 | \qmlmethod BarSet AbstractBarSeries::append(string label, VariantList values) |
|
163 | \qmlmethod BarSet AbstractBarSeries::append(string label, VariantList values) | |
164 |
Adds a new bar set with \a label and \a values to \a index. Values |
|
164 | Adds a new bar set with \a label and \a values to \a index. Values is a list of reals. | |
165 | For example: |
|
165 | For example: | |
166 | \code |
|
166 | \code | |
167 | myBarSeries.append("set 1", [0, 0.2, 0.2, 0.5, 0.4, 1.5, 0.9]); |
|
167 | myBarSeries.append("set 1", [0, 0.2, 0.2, 0.5, 0.4, 1.5, 0.9]); | |
168 | myBarSeries.append("set 2", [Qt.point(0, 1), Qt.point(2, 2.5), Qt.point(3.5, 2.2)]); |
|
|||
169 | \endcode |
|
168 | \endcode | |
170 | */ |
|
169 | */ | |
171 |
|
170 |
@@ -77,6 +77,10 | |||||
77 | Line (pen) color of the series. This is a convenience property for modifying the color of pen. |
|
77 | Line (pen) color of the series. This is a convenience property for modifying the color of pen. | |
78 | \sa QScatterSeries::pen() |
|
78 | \sa QScatterSeries::pen() | |
79 | */ |
|
79 | */ | |
|
80 | /*! | |||
|
81 | \qmlproperty color ScatterSeries::borderColor | |||
|
82 | Border (pen) color of the series. | |||
|
83 | */ | |||
80 |
|
84 | |||
81 | /*! |
|
85 | /*! | |
82 | \qmlproperty real ScatterSeries::borderWidth |
|
86 | \qmlproperty real ScatterSeries::borderWidth |
General Comments 0
You need to be logged in to leave comments.
Login now