diff --git a/src/piechart/qpieseries.cpp b/src/piechart/qpieseries.cpp index 13a3c42..0e94289 100644 --- a/src/piechart/qpieseries.cpp +++ b/src/piechart/qpieseries.cpp @@ -628,7 +628,7 @@ qreal QPieSeries::total() const This signal is emitted when pie position has changed. - \sa setPiePosition(), pieVerticalPosition(), pieHorizontalPosition() + \sa verticalPosition(), setVerticalPosition(), horizontalPosition(), setHorizontalPosition() */ /*! diff --git a/src/qchart.cpp b/src/qchart.cpp index b2b85e5..3dc586d 100644 --- a/src/qchart.cpp +++ b/src/qchart.cpp @@ -221,7 +221,7 @@ QBrush QChart::titleBrush() const /*! Sets the \a theme used by the chart for rendering the graphical representation of the data - \sa ChartTheme, chartTheme() + \sa theme() */ void QChart::setTheme(QChart::ChartTheme theme) { @@ -230,7 +230,7 @@ void QChart::setTheme(QChart::ChartTheme theme) /*! Returns the theme enum used by the chart. - \sa ChartTheme, setChartTheme() + \sa ChartTheme, setTheme() */ QChart::ChartTheme QChart::theme() const { diff --git a/src/qchartview.cpp b/src/qchartview.cpp index 1f72f61..e4e2bf0 100644 --- a/src/qchartview.cpp +++ b/src/qchartview.cpp @@ -77,13 +77,16 @@ QChartView::~QChartView() { } +/*! + Returns the pointer to the associated chart +*/ QChart* QChartView::chart() const { return d_ptr->m_chart; } /*! - Sets the RubberBandPlicy to \a policy. Selected policy determines the way zooming is performed. + Sets the RubberBandPlicy to \a rubberBand. Selected policy determines the way zooming is performed. */ void QChartView::setRubberBand(const RubberBands& rubberBand) { diff --git a/src/xychart/qxyseries.cpp b/src/xychart/qxyseries.cpp index d547cac..d3abccf 100644 --- a/src/xychart/qxyseries.cpp +++ b/src/xychart/qxyseries.cpp @@ -280,7 +280,7 @@ QList QXYSeries::data() /*! Sets \a pen used for drawing points on the chart. If the pen is not defined, the pen from chart theme is used. - \sa QChart::setChartTheme() + \sa QChart::setTheme() */ void QXYSeries::setPen(const QPen &pen) { @@ -293,9 +293,8 @@ void QXYSeries::setPen(const QPen &pen) /*! Sets \a brush used for drawing points on the chart. If the brush is not defined, brush from chart theme setting is used. - \sa QChart::setChartTheme() + \sa QChart::setTheme() */ - void QXYSeries::setBrush(const QBrush &brush) { if (brush != m_brush) { @@ -309,7 +308,6 @@ void QXYSeries::setBrush(const QBrush &brush) Stream operator for adding a data \a point to the series. \sa append() */ - QXYSeries& QXYSeries::operator<< (const QPointF &point) { append(point);