summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2017-01-23 17:09:15 +0100
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2017-01-24 09:59:09 +0000
commit7a66c005af12918bde79665659eee3c49f30b650 (patch)
tree57cabad482522b019bb8a50850126376d3844eb8 /src
parent382f5ccd4c7d4d76380f15cab2f019b9683ebc1f (diff)
Doc: Add missing property docs for CandlestickSeries
Task-number: QTBUG-57685 Change-Id: I6124dde0d018fb64dc4af2e4bdce2a2ec88fb5a0 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/charts/candlestickchart/qcandlestickseries.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/charts/candlestickchart/qcandlestickseries.cpp b/src/charts/candlestickchart/qcandlestickseries.cpp
index 54949feb..ca6a8659 100644
--- a/src/charts/candlestickchart/qcandlestickseries.cpp
+++ b/src/charts/candlestickchart/qcandlestickseries.cpp
@@ -118,6 +118,36 @@ QT_CHARTS_BEGIN_NAMESPACE
*/
/*!
+ \qmlproperty AbstractAxis CandlestickSeries::axisX
+ The x-axis used for the series. If you leave both axisX and axisXTop
+ undefined, a value axis is created for the series.
+ \sa axisXTop, ValueAxis
+*/
+
+/*!
+ \qmlproperty AbstractAxis CandlestickSeries::axisY
+ The y-axis used for the series. If you leave both axisY and axisYRight
+ undefined, a value axis is created for the series.
+ \sa axisYRight, ValueAxis
+*/
+
+/*!
+ \qmlproperty AbstractAxis CandlestickSeries::axisXTop
+ The x-axis used for the series, drawn on top of the chart view.
+
+ \note You can only provide either axisX or axisXTop, not both.
+ \sa axisX
+*/
+
+/*!
+ \qmlproperty AbstractAxis CandlestickSeries::axisYRight
+ The y-axis used for the series, drawn to the right on the chart view.
+
+ \note You can only provide either axisY or axisYRight, not both.
+ \sa axisY
+*/
+
+/*!
\property QCandlestickSeries::count
\brief The number of candlestick items in a series.
*/