summaryrefslogtreecommitdiffstats
path: root/src/datavisualization/data
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2017-02-16 17:23:33 +0100
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2017-02-17 08:37:44 +0000
commit2569161fc44b4ce3ddb2bdfd3889559cf6d06e72 (patch)
tree8d1ce46fc712c81bf7fc3da8c1ac7e79b83fe790 /src/datavisualization/data
parent1d0946b47ce32c166c90208d20db6d31a1a71bf1 (diff)
Doc: Add \brief commands for property docs (QBarDataProxy)
Change-Id: Ia3e4811e76f63913d84d86d9e0d41f5976b3c4ad Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
Diffstat (limited to 'src/datavisualization/data')
-rw-r--r--src/datavisualization/data/qbardataproxy.cpp23
1 files changed, 14 insertions, 9 deletions
diff --git a/src/datavisualization/data/qbardataproxy.cpp b/src/datavisualization/data/qbardataproxy.cpp
index e435417b..c5dfe71a 100644
--- a/src/datavisualization/data/qbardataproxy.cpp
+++ b/src/datavisualization/data/qbardataproxy.cpp
@@ -91,20 +91,21 @@ QT_BEGIN_NAMESPACE_DATAVISUALIZATION
/*!
* \qmlproperty int BarDataProxy::rowCount
- * Row count in the array.
+ * The number of rows in the array.
*/
/*!
* \qmlproperty list BarDataProxy::rowLabels
*
- * Optional row labels for the array. Indexes in this array match row indexes in data array.
- * If the list is shorter than row count, all rows will not get labels.
+ * The optional row labels for the array. Indexes in this array match the row
+ * indexes in the data array.
+ * If the list is shorter than number of rows, all rows will not get labels.
*/
/*!
* \qmlproperty list BarDataProxy::columnLabels
*
- * Optional column labels for the array. Indexes in this array match column indexes in rows.
+ * The optional column labels for the array. Indexes in this array match column indexes in rows.
* If the list is shorter than the longest row, all columns will not get labels.
*/
@@ -140,7 +141,7 @@ QBarDataProxy::~QBarDataProxy()
/*!
* \property QBarDataProxy::series
*
- * The series this proxy is attached to.
+ * \brief The series this proxy is attached to.
*/
QBar3DSeries *QBarDataProxy::series() const
{
@@ -370,7 +371,7 @@ void QBarDataProxy::removeRows(int rowIndex, int removeCount, bool removeLabels)
/*!
* \property QBarDataProxy::rowCount
*
- * Row \a count in the array.
+ * \brief The number of rows in the array.
*/
int QBarDataProxy::rowCount() const
{
@@ -380,8 +381,10 @@ int QBarDataProxy::rowCount() const
/*!
* \property QBarDataProxy::rowLabels
*
- * Optional row \a labels for the array. Indexes in this array match row indexes in data array.
- * If the list is shorter than row count, all rows will not get labels.
+ * \brief The optional row labels for the array.
+ *
+ * Indexes in this array match the row indexes in the data array.
+ * If the list is shorter than the number of rows, all rows will not get labels.
*/
QStringList QBarDataProxy::rowLabels() const
{
@@ -399,7 +402,9 @@ void QBarDataProxy::setRowLabels(const QStringList &labels)
/*!
* \property QBarDataProxy::columnLabels
*
- * Optional column \a labels for the array. Indexes in this array match column indexes in rows.
+ * \brief The optional column labels for the array.
+ *
+ * Indexes in this array match column indexes in rows.
* If the list is shorter than the longest row, all columns will not get labels.
*/
QStringList QBarDataProxy::columnLabels() const