##// END OF EJS Templates
Various documentation fixes
Marek Rosa -
r909:61db0e530636
parent child
Show More
@@ -628,7 +628,7 qreal QPieSeries::total() const
628
628
629 This signal is emitted when pie position has changed.
629 This signal is emitted when pie position has changed.
630
630
631 \sa setPiePosition(), pieVerticalPosition(), pieHorizontalPosition()
631 \sa verticalPosition(), setVerticalPosition(), horizontalPosition(), setHorizontalPosition()
632 */
632 */
633
633
634 /*!
634 /*!
@@ -221,7 +221,7 QBrush QChart::titleBrush() const
221
221
222 /*!
222 /*!
223 Sets the \a theme used by the chart for rendering the graphical representation of the data
223 Sets the \a theme used by the chart for rendering the graphical representation of the data
224 \sa ChartTheme, chartTheme()
224 \sa theme()
225 */
225 */
226 void QChart::setTheme(QChart::ChartTheme theme)
226 void QChart::setTheme(QChart::ChartTheme theme)
227 {
227 {
@@ -230,7 +230,7 void QChart::setTheme(QChart::ChartTheme theme)
230
230
231 /*!
231 /*!
232 Returns the theme enum used by the chart.
232 Returns the theme enum used by the chart.
233 \sa ChartTheme, setChartTheme()
233 \sa ChartTheme, setTheme()
234 */
234 */
235 QChart::ChartTheme QChart::theme() const
235 QChart::ChartTheme QChart::theme() const
236 {
236 {
@@ -77,13 +77,16 QChartView::~QChartView()
77 {
77 {
78 }
78 }
79
79
80 /*!
81 Returns the pointer to the associated chart
82 */
80 QChart* QChartView::chart() const
83 QChart* QChartView::chart() const
81 {
84 {
82 return d_ptr->m_chart;
85 return d_ptr->m_chart;
83 }
86 }
84
87
85 /*!
88 /*!
86 Sets the RubberBandPlicy to \a policy. Selected policy determines the way zooming is performed.
89 Sets the RubberBandPlicy to \a rubberBand. Selected policy determines the way zooming is performed.
87 */
90 */
88 void QChartView::setRubberBand(const RubberBands& rubberBand)
91 void QChartView::setRubberBand(const RubberBands& rubberBand)
89 {
92 {
@@ -280,7 +280,7 QList<QPointF> QXYSeries::data()
280 /*!
280 /*!
281 Sets \a pen used for drawing points on the chart. If the pen is not defined, the
281 Sets \a pen used for drawing points on the chart. If the pen is not defined, the
282 pen from chart theme is used.
282 pen from chart theme is used.
283 \sa QChart::setChartTheme()
283 \sa QChart::setTheme()
284 */
284 */
285 void QXYSeries::setPen(const QPen &pen)
285 void QXYSeries::setPen(const QPen &pen)
286 {
286 {
@@ -293,9 +293,8 void QXYSeries::setPen(const QPen &pen)
293 /*!
293 /*!
294 Sets \a brush used for drawing points on the chart. If the brush is not defined, brush
294 Sets \a brush used for drawing points on the chart. If the brush is not defined, brush
295 from chart theme setting is used.
295 from chart theme setting is used.
296 \sa QChart::setChartTheme()
296 \sa QChart::setTheme()
297 */
297 */
298
299 void QXYSeries::setBrush(const QBrush &brush)
298 void QXYSeries::setBrush(const QBrush &brush)
300 {
299 {
301 if (brush != m_brush) {
300 if (brush != m_brush) {
@@ -309,7 +308,6 void QXYSeries::setBrush(const QBrush &brush)
309 Stream operator for adding a data \a point to the series.
308 Stream operator for adding a data \a point to the series.
310 \sa append()
309 \sa append()
311 */
310 */
312
313 QXYSeries& QXYSeries::operator<< (const QPointF &point)
311 QXYSeries& QXYSeries::operator<< (const QPointF &point)
314 {
312 {
315 append(point);
313 append(point);
General Comments 0
You need to be logged in to leave comments. Login now