##// END OF EJS Templates
Documentation fixes to QML ScatterSeries and AbstractBarSeries
Tero Ahola -
r2115:070dc48e7b5c
parent child
Show More
@@ -140,7 +140,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
140 140 \sa append(), insert()
141 141 */
142 142 /*!
143 \qmlsignal AbstractBarSeries::onAdded(BarSet barset)
143 \qmlsignal AbstractBarSeries::onBarsetsAdded(BarSet barset)
144 144 Emitted when \a barset has been added to the series.
145 145 */
146 146
@@ -150,7 +150,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
150 150 \sa remove()
151 151 */
152 152 /*!
153 \qmlsignal AbstractBarSeries::onRemoved(BarSet barset)
153 \qmlsignal AbstractBarSeries::onBarsetsRemoved(BarSet barset)
154 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 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 can be a list of reals or a list of XYPoints.
164 Adds a new bar set with \a label and \a values to \a index. Values is a list of reals.
165 165 For example:
166 166 \code
167 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 168 \endcode
170 169 */
171 170
@@ -77,6 +77,10
77 77 Line (pen) color of the series. This is a convenience property for modifying the color of pen.
78 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 86 \qmlproperty real ScatterSeries::borderWidth
General Comments 0
You need to be logged in to leave comments. Login now