##// END OF EJS Templates
minor. some docs fix
Michal Klocek -
r480:89946aa027f9
parent child
Show More
@@ -21,7 +21,6
21 <li><a href="example-stackedbarchartdrilldown.html">Stacked Bar Chart Drilldown example</a></li>
21 <li><a href="example-stackedbarchartdrilldown.html">Stacked Bar Chart Drilldown example</a></li>
22 <li><a href="example-linechart.html">Line Chart example</a></li>
22 <li><a href="example-linechart.html">Line Chart example</a></li>
23 <li><a href="example-piechart.html">Pie Chart example</a></li>
23 <li><a href="example-piechart.html">Pie Chart example</a></li>
24 <li><a href="example-gdpbarchart.html">GDP Chart example</a></li>
25 <li><a href="example-splinechart.html">Spline Chart example</a></li>
24 <li><a href="example-splinechart.html">Spline Chart example</a></li>
26 </ul>
25 </ul>
27 </td>
26 </td>
@@ -142,7 +142,7 void QChartView::setChartTitle(const QString& title)
142 }
142 }
143
143
144 /*!
144 /*!
145 Gets the chart \a title. A description text that is rendered above the chart.
145 Returns the chart's title. A description text that is rendered above the chart.
146 */
146 */
147 QString QChartView::chartTitle() const
147 QString QChartView::chartTitle() const
148 {
148 {
@@ -15,11 +15,17 QTCOMMERCIALCHART_BEGIN_NAMESPACE
15
15
16 /*!
16 /*!
17 \fn QPen QXYSeries::pen() const
17 \fn QPen QXYSeries::pen() const
18 \brief Returns the pen used to draw points for this series.
18 \brief Returns pen used to draw points for series.
19 \sa setPen()
19 \sa setPen()
20 */
20 */
21
21
22 /*!
22 /*!
23 \fn QBrush QXYSeries::brush() const
24 \brief Returns brush used to draw points for series.
25 \sa setBrush()
26 */
27
28 /*!
23 \fn void QXYSeries::pointReplaced(int index)
29 \fn void QXYSeries::pointReplaced(int index)
24 \brief \internal \a index
30 \brief \internal \a index
25 */
31 */
@@ -150,7 +156,7 int QXYSeries::count() const
150 }
156 }
151
157
152 /*!
158 /*!
153 Sets \a pen used for points on the chart.
159 Sets \a pen used for drawing points on the chart.
154 */
160 */
155 void QXYSeries::setPen(const QPen& pen)
161 void QXYSeries::setPen(const QPen& pen)
156 {
162 {
@@ -161,7 +167,7 void QXYSeries::setPen(const QPen& pen)
161 }
167 }
162
168
163 /*!
169 /*!
164 Sets \a brush used for points on the chart.
170 Sets \a brush used for drawing points on the chart.
165 */
171 */
166
172
167 void QXYSeries::setBrush(const QBrush& brush)
173 void QXYSeries::setBrush(const QBrush& brush)
General Comments 0
You need to be logged in to leave comments. Login now