##// END OF EJS Templates
Few more axes docs updates
Marek Rosa -
r1637:77c03282e0b6
parent child
Show More
@@ -65,6 +65,11 QTCOMMERCIALCHART_BEGIN_NAMESPACE
65 */
65 */
66
66
67 /*!
67 /*!
68 *\fn void QAbstractAxis::type() const
69 Returns the type of the axis
70 */
71
72 /*!
68 \property QAbstractAxis::arrowVisible
73 \property QAbstractAxis::arrowVisible
69 The visibility of the axis arrow
74 The visibility of the axis arrow
70 */
75 */
@@ -292,7 +292,7 void QBarCategoriesAxis::setRange(const QString& minCategory, const QString& max
292 }
292 }
293
293
294 /*!
294 /*!
295 Returns the type of axis.
295 Returns the type of the axis
296 */
296 */
297 QAbstractAxis::AxisType QBarCategoriesAxis::type() const
297 QAbstractAxis::AxisType QBarCategoriesAxis::type() const
298 {
298 {
@@ -121,7 +121,7 int QIntervalAxis::count() const
121 }
121 }
122
122
123 /*!
123 /*!
124 Returns the type of axis.
124 Returns the type of the axis
125 */
125 */
126 QAbstractAxis::AxisType QIntervalAxis::type() const
126 QAbstractAxis::AxisType QIntervalAxis::type() const
127 {
127 {
@@ -210,6 +210,9 bool QValuesAxis::niceNumbersEnabled() const
210 return d->m_niceNumbers;
210 return d->m_niceNumbers;
211 }
211 }
212
212
213 /*!
214 Returns the type of the axis
215 */
213 QAbstractAxis::AxisType QValuesAxis::type() const
216 QAbstractAxis::AxisType QValuesAxis::type() const
214 {
217 {
215 return AxisTypeValues;
218 return AxisTypeValues;
General Comments 0
You need to be logged in to leave comments. Login now