summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/charts/axis/qabstractaxis.cpp2
-rw-r--r--src/charts/boxplotchart/qboxset.cpp5
-rw-r--r--src/charts/qchart.h2
-rw-r--r--src/chartsqml2/declarativechart.cpp8
4 files changed, 7 insertions, 10 deletions
diff --git a/src/charts/axis/qabstractaxis.cpp b/src/charts/axis/qabstractaxis.cpp
index bf7d7dfb..c1e55f83 100644
--- a/src/charts/axis/qabstractaxis.cpp
+++ b/src/charts/axis/qabstractaxis.cpp
@@ -370,7 +370,7 @@ QT_CHARTS_BEGIN_NAMESPACE
/*!
\fn void QAbstractAxis::labelsEditableChanged(bool editable)
\since 5.13
- This signal is emitted when the labels editability changes.
+ This signal is emitted when the \a editable state of the label changes.
*/
/*!
diff --git a/src/charts/boxplotchart/qboxset.cpp b/src/charts/boxplotchart/qboxset.cpp
index 7d5f562d..e9771d12 100644
--- a/src/charts/boxplotchart/qboxset.cpp
+++ b/src/charts/boxplotchart/qboxset.cpp
@@ -73,11 +73,6 @@ QT_CHARTS_BEGIN_NAMESPACE
*/
/*!
- \qmlproperty QString BoxSet::brushFilename
- The name of the file used as a brush for the box-and-whiskers item.
-*/
-
-/*!
\fn void QBoxSet::clicked()
This signal is emitted when the user clicks a box-and-whiskers item in the chart.
*/
diff --git a/src/charts/qchart.h b/src/charts/qchart.h
index e287500d..1c233fb2 100644
--- a/src/charts/qchart.h
+++ b/src/charts/qchart.h
@@ -199,6 +199,8 @@ private:
QT_CHARTS_END_NAMESPACE
+#ifndef Q_CLANG_QDOC
Q_DECLARE_OPERATORS_FOR_FLAGS(QT_CHARTS_NAMESPACE::QChart::AnimationOptions)
+#endif
#endif // QCHART_H
diff --git a/src/chartsqml2/declarativechart.cpp b/src/chartsqml2/declarativechart.cpp
index 23ee2a11..6cb811aa 100644
--- a/src/chartsqml2/declarativechart.cpp
+++ b/src/chartsqml2/declarativechart.cpp
@@ -325,22 +325,22 @@ QT_CHARTS_BEGIN_NAMESPACE
/*!
\qmlmethod Axis ChartView::axisX(AbstractSeries series)
- The x-axis of the series.
+ The x-axis of the \a series.
*/
/*!
\qmlmethod ChartView::setAxisX(AbstractAxis axis, AbstractSeries series)
- Sets the x-axis of the series.
+ Sets the x-axis of the \a series to \a axis.
*/
/*!
\qmlmethod Axis ChartView::axisY(AbstractSeries series)
- The y-axis of the series.
+ The y-axis of the \a series.
*/
/*!
\qmlmethod ChartView::setAxisY(AbstractAxis axis, AbstractSeries series)
- Sets the y-axis of the series.
+ Sets the y-axis of the \a series to \a axis.
*/
/*!