##// END OF EJS Templates
Fixed documentation issues in QML API
Tero Ahola -
r2331:d7e6106b698e
parent child
Show More
@@ -196,25 +196,21 QTCOMMERCIALCHART_BEGIN_NAMESPACE
196 196 /*!
197 197 \qmlmethod ChartView::scrollLeft(real pixels)
198 198 Scrolls to left by \a pixels. This is a convenience function that suits for example for key navigation.
199 \sa ValueAxis::min, ValueAxis::max, BarCategoryAxis::min, BarCategoryAxis::max
200 199 */
201 200
202 201 /*!
203 202 \qmlmethod ChartView::scrollRight(real pixels)
204 203 Scrolls to right by \a pixels. This is a convenience function that suits for example for key navigation.
205 \sa ValueAxis::min, ValueAxis::max, BarCategoryAxis::min, BarCategoryAxis::max
206 204 */
207 205
208 206 /*!
209 207 \qmlmethod ChartView::scrollUp(real pixels)
210 208 Scrolls up by \a pixels. This is a convenience function that suits for example for key navigation.
211 \sa ValueAxis::min, ValueAxis::max, BarCategoryAxis::min, BarCategoryAxis::max
212 209 */
213 210
214 211 /*!
215 212 \qmlmethod ChartView::scrollDown(real pixels)
216 213 Scrolls down by \a pixels. This is a convenience function that suits for example for key navigation.
217 \sa ValueAxis::min, ValueAxis::max, BarCategoryAxis::min, BarCategoryAxis::max
218 214 */
219 215
220 216 /*!
@@ -87,8 +87,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
87 87 Defines the minimum value on the axis.
88 88 */
89 89 /*!
90 \qmlproperty QString Bar if (d->m_chart)
91 d->m_chart->removeAxis(this);CategoryAxis::min
90 \qmlproperty string BarCategoryAxis::min
92 91 Defines the minimum value on the axis.
93 92 */
94 93
@@ -97,7 +96,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
97 96 Defines the maximum value on the axis.
98 97 */
99 98 /*!
100 \qmlproperty QString BarCategoryAxis::max
99 \qmlproperty string BarCategoryAxis::max
101 100 Defines the maximum value on the axis.
102 101 */
103 102
@@ -62,6 +62,34 QTCOMMERCIALCHART_BEGIN_NAMESPACE
62 62 */
63 63
64 64 /*!
65 \qmlproperty AbstractAxis AbstractBarSeries::axisX
66 The x axis used for the series. If you leave both axisX and axisXTop undefined, a BarCategoriesAxis is created for
67 the series.
68 \sa axisXTop
69 */
70
71 /*!
72 \qmlproperty AbstractAxis AbstractBarSeries::axisY
73 The y axis used for the series. If you leave both axisY and axisYRight undefined, a ValueAxis is created for
74 the series.
75 \sa axisYRight
76 */
77
78 /*!
79 \qmlproperty AbstractAxis AbstractBarSeries::axisXTop
80 The x axis used for the series, drawn on top of the chart view. Note that you can only provide either axisX or
81 axisXTop, but not both.
82 \sa axisX
83 */
84
85 /*!
86 \qmlproperty AbstractAxis AbstractBarSeries::axisYRight
87 The y axis used for the series, drawn to the right on the chart view. Note that you can only provide either axisY
88 or axisYRight, but not both.
89 \sa axisY
90 */
91
92 /*!
65 93 \property QAbstractBarSeries::barWidth
66 94 The width of the bars of the series. The unit of \a width is the unit of x-axis. The minimum width for bars
67 95 is zero and negative values are treated as zero. Setting the width to zero means that width of the bar on screen
@@ -65,18 +65,6 QTCOMMERCIALCHART_BEGIN_NAMESPACE
65 65 */
66 66
67 67 /*!
68 \qmlproperty AbstractAxis LineSeries::axisX
69 The x axis used for the series. If you leave the x axis undefined, a ValueAxis is created for
70 the series.
71 */
72
73 /*!
74 \qmlproperty AbstractAxis LineSeries::axisY
75 The y axis used for the series. If you leave the y axis undefined, a ValueAxis is created for
76 the series.
77 */
78
79 /*!
80 68 \qmlproperty real LineSeries::width
81 69 The width of the line. By default the width is 2.0.
82 70 */
@@ -62,18 +62,6
62 62 */
63 63
64 64 /*!
65 \qmlproperty AbstractAxis SplineSeries::axisX
66 The x axis used for the series. If you leave the x axis undefined, a ValueAxis is created for
67 the series.
68 */
69
70 /*!
71 \qmlproperty AbstractAxis SplineSeries::axisY
72 The y axis used for the series. If you leave the y axis undefined, a ValueAxis is created for
73 the series.
74 */
75
76 /*!
77 65 \qmlproperty real SplineSeries::width
78 66 The width of the line. By default the width is 2.0.
79 67 */
@@ -40,6 +40,34 QTCOMMERCIALCHART_BEGIN_NAMESPACE
40 40 */
41 41
42 42 /*!
43 \qmlproperty AbstractAxis XYSeries::axisX
44 The x axis used for the series. If you leave both axisX and axisXTop undefined, a ValueAxis is created for
45 the series.
46 \sa axisXTop
47 */
48
49 /*!
50 \qmlproperty AbstractAxis XYSeries::axisY
51 The y axis used for the series. If you leave both axisY and axisYRight undefined, a ValueAxis is created for
52 the series.
53 \sa axisYRight
54 */
55
56 /*!
57 \qmlproperty AbstractAxis XYSeries::axisXTop
58 The x axis used for the series, drawn on top of the chart view. Note that you can only provide either axisX or
59 axisXTop, but not both.
60 \sa axisX
61 */
62
63 /*!
64 \qmlproperty AbstractAxis XYSeries::axisYRight
65 The y axis used for the series, drawn to the right on the chart view. Note that you can only provide either axisY
66 or axisYRight, but not both.
67 \sa axisY
68 */
69
70 /*!
43 71 \property QXYSeries::pointsVisible
44 72 Controls if the data points are visible and should be drawn.
45 73 */
General Comments 0
You need to be logged in to leave comments. Login now