@@ -29,7 +29,6 | |||
|
29 | 29 | <li><a href="qml-chartview.html">ChartView</a></li> |
|
30 | 30 | <li><a href="qml-abstractaxis.html">AbstractAxis</a></li> |
|
31 | 31 | <li><a href="qml-valueaxis.html">ValueAxis</a></li> |
|
32 | <li><a href="qml-logvaluesaxis.html">LogValueAxis</a></li> | |
|
33 | 32 | <li><a href="qml-categoryaxis.html">CategoryAxis</a></li> |
|
34 | 33 | <li><a href="qml-categoryrange.html">CategoryRange</a></li> |
|
35 | 34 | <li><a href="qml-barcategoryaxis.html">BarCategoryAxis</a></li> |
@@ -39,28 +39,11 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||
|
39 | 39 | */ |
|
40 | 40 | |
|
41 | 41 | /*! |
|
42 | \qmlclass LogValuesAxis QLogValueAxis | |
|
43 | \brief The LogValueAxis element is used for manipulating chart's axes | |
|
44 | \inherits AbstractAxis | |
|
45 | ||
|
46 | \note If a LogValueAxis is attached to a series with one or more points with | |
|
47 | negative or zero values on the associated dimension, the series will not be | |
|
48 | plotted at all. This is particularly relevant when XYModelMappers are used, | |
|
49 | since empty cells in models typically contain zero values. | |
|
50 | */ | |
|
51 | ||
|
52 | /*! | |
|
53 | 42 | \property QLogValueAxis::min |
|
54 | 43 | Defines the minimum value on the axis. |
|
55 | 44 | When setting this property the max is adjusted if necessary, to ensure that the range remains valid. |
|
56 | 45 | Value has to be greater then 0. |
|
57 | 46 | */ |
|
58 | /*! | |
|
59 | \qmlproperty real LogValuesAxis::min | |
|
60 | Defines the minimum value on the axis. | |
|
61 | When setting this property the max is adjusted if necessary, to ensure that the range remains valid. | |
|
62 | Value has to be greater then 0. | |
|
63 | */ | |
|
64 | 47 | |
|
65 | 48 | /*! |
|
66 | 49 | \property QLogValueAxis::max |
@@ -68,24 +51,12 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||
|
68 | 51 | When setting this property the min is adjusted if necessary, to ensure that the range remains valid. |
|
69 | 52 | Value has to be greater then 0. |
|
70 | 53 | */ |
|
71 | /*! | |
|
72 | \qmlproperty real LogValuesAxis::max | |
|
73 | Defines the maximum value on the axis. | |
|
74 | When setting this property the min is adjusted if necessary, to ensure that the range remains valid. | |
|
75 | Value has to be greater then 0. | |
|
76 | */ | |
|
77 | 54 | |
|
78 | 55 | /*! |
|
79 | 56 | \property QLogValueAxis::base |
|
80 | 57 | Defines the base of the logarithm. |
|
81 | 58 | Value has to be greater then 0 and not equal 1 |
|
82 | 59 | */ |
|
83 | /*! | |
|
84 | \qmlproperty real LogValuesAxis::base | |
|
85 | Defines the maximum value on the axis. | |
|
86 | Defines the base of the logarithm. | |
|
87 | Value has to be greater then 0 and not equal 1 | |
|
88 | */ | |
|
89 | 60 | |
|
90 | 61 | /*! |
|
91 | 62 | \property QLogValueAxis::labelFormat |
@@ -93,30 +64,16 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||
|
93 | 64 | Supported specifiers are: d, i, o, x, X, f, F, e, E, g, G, c |
|
94 | 65 | See QString::sprintf() for additional details. |
|
95 | 66 | */ |
|
96 | /*! | |
|
97 | \qmlproperty real LogValuesAxis::labelFormat | |
|
98 | Defines the label format of the axis. | |
|
99 | Supported specifiers are: d, i, o, x, X, f, F, e, E, g, G, c | |
|
100 | See QString::sprintf() for additional details. | |
|
101 | */ | |
|
102 | 67 | |
|
103 | 68 | /*! |
|
104 | 69 | \fn void QLogValueAxis::minChanged(qreal min) |
|
105 | 70 | Axis emits signal when \a min of axis has changed. |
|
106 | 71 | */ |
|
107 | /*! | |
|
108 | \qmlsignal LogValuesAxis::onMinChanged(qreal min) | |
|
109 | Axis emits signal when \a min of axis has changed. | |
|
110 | */ | |
|
111 | 72 | |
|
112 | 73 | /*! |
|
113 | 74 | \fn void QLogValueAxis::maxChanged(qreal max) |
|
114 | 75 | Axis emits signal when \a max of axis has changed. |
|
115 | 76 | */ |
|
116 | /*! | |
|
117 | \qmlsignal LogValuesAxis::onMaxChanged(qreal max) | |
|
118 | Axis emits signal when \a max of axis has changed. | |
|
119 | */ | |
|
120 | 77 | |
|
121 | 78 | /*! |
|
122 | 79 | \fn void QLogValueAxis::rangeChanged(qreal min, qreal max) |
@@ -127,19 +84,11 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||
|
127 | 84 | \fn void QLogValueAxis::labelFormatChanged(const QString &format) |
|
128 | 85 | Axis emits signal when \a format of axis labels has changed. |
|
129 | 86 | */ |
|
130 | /*! | |
|
131 | \qmlsignal LogValueAxis::labelFormatChanged(const QString &format) | |
|
132 | Axis emits signal when \a format of axis labels has changed. | |
|
133 | */ | |
|
134 | 87 | |
|
135 | 88 | /*! |
|
136 | 89 | \fn void QLogValueAxis::baseChanged(qreal base) |
|
137 | 90 | Axis emits signal when \a base of logarithm of the axis has changed. |
|
138 | 91 | */ |
|
139 | /*! | |
|
140 | \qmlsignal LogValuesAxis::baseChanged(qreal base) | |
|
141 | Axis emits signal when \a base of logarithm of the axis has changed. | |
|
142 | */ | |
|
143 | 92 | |
|
144 | 93 | /*! |
|
145 | 94 | Constructs an axis object which is a child of \a parent. |
General Comments 0
You need to be logged in to leave comments.
Login now