##// END OF EJS Templates
QLogValueAxis docs updated
Marek Rosa -
r2338:3a24e00acf37
parent child
Show More
@@ -35,7 +35,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
35
35
36 /*!
36 /*!
37 \qmlclass DateTimeAxis QLogValueAxis
37 \qmlclass DateTimeAxis QLogValueAxis
38 \brief The DateTimeAxis element is used for manipulating chart's axes
38 \brief The QLogValueAxis element is used for manipulating chart's axes
39 \inherits AbstractAxis
39 \inherits AbstractAxis
40 */
40 */
41
41
@@ -43,22 +43,51 QTCOMMERCIALCHART_BEGIN_NAMESPACE
43 \property QLogValueAxis::min
43 \property QLogValueAxis::min
44 Defines the minimum value on the axis.
44 Defines the minimum value on the axis.
45 When setting this property the max is adjusted if necessary, to ensure that the range remains valid.
45 When setting this property the max is adjusted if necessary, to ensure that the range remains valid.
46 Value has to be greater then 0.
46 */
47 */
47 /*!
48 /*!
48 \qmlproperty real ValuesAxis::min
49 \qmlproperty real LogValuesAxis::min
49 Defines the minimum value on the axis.
50 Defines the minimum value on the axis.
50 When setting this property the max is adjusted if necessary, to ensure that the range remains valid.
51 When setting this property the max is adjusted if necessary, to ensure that the range remains valid.
52 Value has to be greater then 0.
51 */
53 */
52
54
53 /*!
55 /*!
54 \property QLogValueAxis::max
56 \property QLogValueAxis::max
55 Defines the maximum value on the axis.
57 Defines the maximum value on the axis.
56 When setting this property the min is adjusted if necessary, to ensure that the range remains valid.
58 When setting this property the min is adjusted if necessary, to ensure that the range remains valid.
59 Value has to be greater then 0.
57 */
60 */
58 /*!
61 /*!
59 \qmlproperty real ValuesAxis::max
62 \qmlproperty real LogValuesAxis::max
60 Defines the maximum value on the axis.
63 Defines the maximum value on the axis.
61 When setting this property the min is adjusted if necessary, to ensure that the range remains valid.
64 When setting this property the min is adjusted if necessary, to ensure that the range remains valid.
65 Value has to be greater then 0.
66 */
67
68 /*!
69 \property QLogValueAxis::base
70 Defines the base of the logarithm.
71 Value has to be greater then 0 and not equal 1
72 */
73 /*!
74 \qmlproperty real LogValuesAxis::base
75 Defines the maximum value on the axis.
76 Defines the base of the logarithm.
77 Value has to be greater then 0 and not equal 1
78 */
79
80 /*!
81 \property QLogValueAxis::labelFormat
82 Defines the label format of the axis.
83 Supported specifiers are: d, i, o, x, X, f, F, e, E, g, G, c
84 See QString::sprintf() for additional details.
85 */
86 /*!
87 \qmlproperty real LogValuesAxis::labelFormat
88 Defines the label format of the axis.
89 Supported specifiers are: d, i, o, x, X, f, F, e, E, g, G, c
90 See QString::sprintf() for additional details.
62 */
91 */
63
92
64 /*!
93 /*!
@@ -66,7 +95,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
66 Axis emits signal when \a min of axis has changed.
95 Axis emits signal when \a min of axis has changed.
67 */
96 */
68 /*!
97 /*!
69 \qmlsignal ValuesAxis::onMinChanged(qreal min)
98 \qmlsignal LogValuesAxis::onMinChanged(qreal min)
70 Axis emits signal when \a min of axis has changed.
99 Axis emits signal when \a min of axis has changed.
71 */
100 */
72
101
@@ -75,7 +104,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
75 Axis emits signal when \a max of axis has changed.
104 Axis emits signal when \a max of axis has changed.
76 */
105 */
77 /*!
106 /*!
78 \qmlsignal ValuesAxis::onMaxChanged(qreal max)
107 \qmlsignal LogValuesAxis::onMaxChanged(qreal max)
79 Axis emits signal when \a max of axis has changed.
108 Axis emits signal when \a max of axis has changed.
80 */
109 */
81
110
@@ -85,6 +114,24 QTCOMMERCIALCHART_BEGIN_NAMESPACE
85 */
114 */
86
115
87 /*!
116 /*!
117 \fn void QLogValueAxis::labelFormatChanged(const QString &format)
118 Axis emits signal when \a format of axis labels has changed.
119 */
120 /*!
121 \qmlsignal LogValueAxis::labelFormatChanged(const QString &format)
122 Axis emits signal when \a format of axis labels has changed.
123 */
124
125 /*!
126 \fn void QLogValueAxis::baseChanged(qreal base)
127 Axis emits signal when \a base of logarithm of the axis has changed.
128 */
129 /*!
130 \qmlsignal LogValuesAxis::baseChanged(qreal base)
131 Axis emits signal when \a base of logarithm of the axis has changed.
132 */
133
134 /*!
88 Constructs an axis object which is a child of \a parent.
135 Constructs an axis object which is a child of \a parent.
89 */
136 */
90 QLogValueAxis::QLogValueAxis(QObject *parent) :
137 QLogValueAxis::QLogValueAxis(QObject *parent) :
General Comments 0
You need to be logged in to leave comments. Login now