@@ -148,6 +148,15 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||
|
148 | 148 | */ |
|
149 | 149 | |
|
150 | 150 | /*! |
|
151 | \fn void QDateTimeAxis::tickCountChanged(int tickCount) | |
|
152 | Axis emits signal when \a tickCount number on axis have changed. | |
|
153 | */ | |
|
154 | /*! | |
|
155 | \qmlsignal DateTimeAxis::tickCountChanged(int tickCount) | |
|
156 | Axis emits signal when \a tickCount number on axis have changed. | |
|
157 | */ | |
|
158 | ||
|
159 | /*! | |
|
151 | 160 | \fn void QDateTimeAxis::formatChanged(QString format) |
|
152 | 161 | Axis emits signal when \a format of the axis has changed. |
|
153 | 162 | */ |
@@ -66,6 +66,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||
|
66 | 66 | \value AxisTypeBarCategory |
|
67 | 67 | \value AxisTypeCategory |
|
68 | 68 | \value AxisTypeDateTime |
|
69 | \value AxisTypeLogValue | |
|
69 | 70 | */ |
|
70 | 71 | |
|
71 | 72 | /*! |
@@ -108,13 +108,13 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||
|
108 | 108 | |
|
109 | 109 | /*! |
|
110 | 110 | \property QValueAxis::labelFormat |
|
111 |
Defines the label format |
|
|
111 | Defines the label format of the axis. | |
|
112 | 112 | Supported specifiers are: d, i, o, x, X, f, F, e, E, g, G, c |
|
113 | 113 | See QString::sprintf() for additional details. |
|
114 | 114 | */ |
|
115 | 115 | /*! |
|
116 | 116 | \qmlproperty real ValueAxis::labelFormat |
|
117 |
Defines the label format |
|
|
117 | Defines the label format of the axis. | |
|
118 | 118 | Supported specifiers are: d, i, o, x, X, f, F, e, E, g, G, c |
|
119 | 119 | See QString::sprintf() for additional details. |
|
120 | 120 | */ |
@@ -139,11 +139,11 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||
|
139 | 139 | |
|
140 | 140 | /*! |
|
141 | 141 | \fn void QValueAxis::tickCountChanged(int tickCount) |
|
142 |
Axis emits signal when number |
|
|
142 | Axis emits signal when \a tickCount number on axis have changed. | |
|
143 | 143 | */ |
|
144 | 144 | /*! |
|
145 | 145 | \qmlsignal ValueAxis::tickCountChanged(int tickCount) |
|
146 |
Axis emits signal when number |
|
|
146 | Axis emits signal when \a tickCount number on axis have changed. | |
|
147 | 147 | */ |
|
148 | 148 | |
|
149 | 149 | /*! |
@@ -152,6 +152,15 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||
|
152 | 152 | */ |
|
153 | 153 | |
|
154 | 154 | /*! |
|
155 | \fn void QValueAxis::labelFormatChanged(const QString &format) | |
|
156 | Axis emits signal when \a format of axis labels has changed. | |
|
157 | */ | |
|
158 | /*! | |
|
159 | \qmlsignal ValueAxis::labelFormatChanged(const QString &format) | |
|
160 | Axis emits signal when \a format of axis labels has changed. | |
|
161 | */ | |
|
162 | ||
|
163 | /*! | |
|
155 | 164 | \property QValueAxis::niceNumbersEnabled |
|
156 | 165 | \obsolete |
|
157 | 166 | Using this function can lead to unexpected behavior. Use applyNiceNumbers() instead. |
@@ -288,7 +297,7 QAbstractAxis::AxisType QValueAxis::type() const | |||
|
288 | 297 | This method modifies range and number of ticks on the axis to look "nice". Algorithm considers numbers that |
|
289 | 298 | 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. |
|
290 | 299 | This method will modify the current range and number of ticks. |
|
291 |
\sa setRange(), setTick |
|
|
300 | \sa setRange(), setTickCount() | |
|
292 | 301 | */ |
|
293 | 302 | void QValueAxis::applyNiceNumbers() |
|
294 | 303 | { |
General Comments 0
You need to be logged in to leave comments.
Login now