summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJere Tuliniemi <jere.tuliniemi@qt.io>2024-05-02 12:27:37 +0300
committerJere Tuliniemi <jere.tuliniemi@qt.io>2024-05-03 10:03:24 +0300
commit3d7eefe540b578a25954ce8883df74da127ddf69 (patch)
treeb4b83453d6618748570637ca53852ec14d94495d
parent995bbaa8b939be5e9dbc6625556944b4f25e9e14 (diff)
Document BarCategoryAxis min and max behavior
Fixes: QTBUG-121718 Change-Id: Idc970af442286ae1fea5aa5a22364d1ee3edfa3b Reviewed-by: Kwanghyo Park <kwanghyo.park@qt.io> Reviewed-by: Kaj Grönholm <kaj.gronholm@qt.io>
-rw-r--r--src/graphs2d/axis/barcategoryaxis/qbarcategoryaxis.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/graphs2d/axis/barcategoryaxis/qbarcategoryaxis.cpp b/src/graphs2d/axis/barcategoryaxis/qbarcategoryaxis.cpp
index ad4dafe..2fb5d44 100644
--- a/src/graphs2d/axis/barcategoryaxis/qbarcategoryaxis.cpp
+++ b/src/graphs2d/axis/barcategoryaxis/qbarcategoryaxis.cpp
@@ -58,19 +58,23 @@ QT_BEGIN_NAMESPACE
/*!
\property QBarCategoryAxis::min
\brief The minimum value on the axis.
+
+ The minimum value on the axis. The given value should be contained in \c categories.
*/
/*!
\qmlproperty string BarCategoryAxis::min
- The minimum value on the axis.
+ The minimum value on the axis. The given value should be contained in \c categories.
*/
/*!
\property QBarCategoryAxis::max
\brief The maximum value on the axis.
+
+ The maximum value on the axis. The given value should be contained in \c categories.
*/
/*!
\qmlproperty string BarCategoryAxis::max
- The maximum value on the axis.
+ The maximum value on the axis. The given value should be contained in \c categories.
*/
/*!