From dd78105a8d957acf30f5fbb81387bbfd2bbed24f 2012-06-01 13:56:16 From: Jani Honkonen Date: 2012-06-01 13:56:16 Subject: [PATCH] qaxis doc update --- diff --git a/src/axis/qaxis.cpp b/src/axis/qaxis.cpp index 7689ae0..1ff2a98 100644 --- a/src/axis/qaxis.cpp +++ b/src/axis/qaxis.cpp @@ -36,6 +36,24 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE */ /*! + \property QAxis::labelsVisible + + Defines if axis labels are visible. +*/ + +/*! + \property QAxis::min + + Defines the minimum value on the axis. +*/ + +/*! + \property QAxis::max + + Defines the maximum value on the axis. +*/ + +/*! \fn bool QAxis::isAxisVisible() const \brief Returns if axis is visible \sa setAxisVisible() @@ -61,12 +79,6 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE */ /*! - \fn bool QAxis::labelsVisible() const - \brief Returns if grid is visible - \sa setLabelsVisible() -*/ - -/*! \fn QPen QAxis::labelsPen() const \brief Returns the pen used to labels. \sa setLabelsPen() @@ -240,9 +252,6 @@ QPen QAxis::gridLinePen() const return d_ptr->m_gridLinePen; } -/*! - Sets if axis' labels are \a visible. - */ void QAxis::setLabelsVisible(bool visible) { if (d_ptr->m_labelsVisible != visible) { @@ -383,9 +392,6 @@ qreal QAxis::shadesOpacity() const return d_ptr->m_shadesOpacity; } -/*! - Sets \a min value on the axis. - */ void QAxis::setMin(qreal min) { setRange(min,d_ptr->m_max); @@ -396,9 +402,6 @@ qreal QAxis::min() const return d_ptr->m_min; } -/*! - Sets \a max value on the axis. - */ void QAxis::setMax(qreal max) { setRange(d_ptr->m_min,max);