diff --git a/src/axis/datetimeaxis/qdatetimeaxis.cpp b/src/axis/datetimeaxis/qdatetimeaxis.cpp index f1d766e..13ec7c8 100644 --- a/src/axis/datetimeaxis/qdatetimeaxis.cpp +++ b/src/axis/datetimeaxis/qdatetimeaxis.cpp @@ -148,6 +148,15 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE */ /*! + \fn void QDateTimeAxis::tickCountChanged(int tickCount) + Axis emits signal when \a tickCount number on axis have changed. +*/ +/*! + \qmlsignal DateTimeAxis::tickCountChanged(int tickCount) + Axis emits signal when \a tickCount number on axis have changed. +*/ + +/*! \fn void QDateTimeAxis::formatChanged(QString format) Axis emits signal when \a format of the axis has changed. */ diff --git a/src/axis/qabstractaxis.cpp b/src/axis/qabstractaxis.cpp index d24a0f3..6378b4b 100644 --- a/src/axis/qabstractaxis.cpp +++ b/src/axis/qabstractaxis.cpp @@ -66,6 +66,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE \value AxisTypeBarCategory \value AxisTypeCategory \value AxisTypeDateTime + \value AxisTypeLogValue */ /*! diff --git a/src/axis/valueaxis/qvalueaxis.cpp b/src/axis/valueaxis/qvalueaxis.cpp index 2a0508b..9e6cd3a 100644 --- a/src/axis/valueaxis/qvalueaxis.cpp +++ b/src/axis/valueaxis/qvalueaxis.cpp @@ -108,13 +108,13 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE /*! \property QValueAxis::labelFormat - Defines the label format for the axis. + Defines the label format of the axis. Supported specifiers are: d, i, o, x, X, f, F, e, E, g, G, c See QString::sprintf() for additional details. */ /*! \qmlproperty real ValueAxis::labelFormat - Defines the label format for the axis. + Defines the label format of the axis. Supported specifiers are: d, i, o, x, X, f, F, e, E, g, G, c See QString::sprintf() for additional details. */ @@ -139,11 +139,11 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE /*! \fn void QValueAxis::tickCountChanged(int tickCount) - Axis emits signal when number of ticks on axis have changed. + Axis emits signal when \a tickCount number on axis have changed. */ /*! \qmlsignal ValueAxis::tickCountChanged(int tickCount) - Axis emits signal when number of ticks on axis have changed. + Axis emits signal when \a tickCount number on axis have changed. */ /*! @@ -152,6 +152,15 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE */ /*! + \fn void QValueAxis::labelFormatChanged(const QString &format) + Axis emits signal when \a format of axis labels has changed. +*/ +/*! + \qmlsignal ValueAxis::labelFormatChanged(const QString &format) + Axis emits signal when \a format of axis labels has changed. +*/ + +/*! \property QValueAxis::niceNumbersEnabled \obsolete Using this function can lead to unexpected behavior. Use applyNiceNumbers() instead. @@ -288,7 +297,7 @@ QAbstractAxis::AxisType QValueAxis::type() const This method modifies range and number of ticks on the axis to look "nice". Algorithm considers numbers that can be expressed as form of 1*10^n, 2* 10^n or 5*10^n as a nice numbers. These numbers are used for spacing the ticks. This method will modify the current range and number of ticks. - \sa setRange(), setTicks() + \sa setRange(), setTickCount() */ void QValueAxis::applyNiceNumbers() {