mirror of https://github.com/qt/qtgraphs.git
Document the axis properties of QAbstractSeries
Task-number: QTBUG-132333 Pick-to: 6.10 Change-Id: Ice90c1ee70309eff8c9404b046ca2819ff94526c Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
This commit is contained in:
parent
2a19994f52
commit
1aa6025991
|
|
@ -202,6 +202,38 @@ QT_BEGIN_NAMESPACE
|
|||
By default, the valuesMultiplier is 1.0. The valid values range from 0.0 (height 0) to 1.0 (full value).
|
||||
*/
|
||||
|
||||
/*!
|
||||
\property QAbstractSeries::axisX
|
||||
\brief X-axis of this series.
|
||||
\since 6.10
|
||||
|
||||
The x-axis used for this series. Creates a separate axis from the one defined
|
||||
in GraphsView showing the user multiple axis per graph.
|
||||
*/
|
||||
/*!
|
||||
\qmlproperty AbstractAxis AbstractSeries::axisX
|
||||
\since 6.10
|
||||
The x-axis used for this series. Creates a separate axis from the one defined
|
||||
in GraphsView showing the user multiple axis per graph.
|
||||
\sa axisY
|
||||
*/
|
||||
|
||||
/*!
|
||||
\property QAbstractSeries::axisY
|
||||
\brief Y-axis of this series.
|
||||
\since 6.10
|
||||
|
||||
The y-axis used for this series. Creates a separate axis from the one defined
|
||||
in GraphsView showing the user multiple axis per graph.
|
||||
*/
|
||||
/*!
|
||||
\qmlproperty AbstractAxis AbstractSeries::axisY
|
||||
\since 6.10
|
||||
The y-axis used for this series. Creates a separate axis from the one defined
|
||||
in GraphsView showing the user multiple axis per graph.
|
||||
\sa axisX
|
||||
*/
|
||||
|
||||
/*!
|
||||
\property QAbstractSeries::zValue
|
||||
\brief Controls the order in which the series is drawn
|
||||
|
|
|
|||
Loading…
Reference in New Issue