summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/boxplotchart/qboxplotseries.cpp4
-rw-r--r--src/boxplotchart/qboxplotseries.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/src/boxplotchart/qboxplotseries.cpp b/src/boxplotchart/qboxplotseries.cpp
index 5dc6be1f..a795b919 100644
--- a/src/boxplotchart/qboxplotseries.cpp
+++ b/src/boxplotchart/qboxplotseries.cpp
@@ -87,6 +87,10 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE
\property QBoxPlotSeries::brush
\brief This property configures the brush of the box-and-whiskers items.
*/
+/*!
+ \property QBoxPlotSeries::count
+ \brief The count of sets in series.
+*/
/*!
\qmlproperty QString BoxPlotSeries::brushFilename
diff --git a/src/boxplotchart/qboxplotseries.h b/src/boxplotchart/qboxplotseries.h
index 5517ed79..5aedd5af 100644
--- a/src/boxplotchart/qboxplotseries.h
+++ b/src/boxplotchart/qboxplotseries.h
@@ -36,6 +36,7 @@ class QTCOMMERCIALCHART_EXPORT QBoxPlotSeries : public QAbstractSeries
Q_PROPERTY(qreal boxWidth READ boxWidth WRITE setBoxWidth NOTIFY boxWidthChanged)
Q_PROPERTY(QPen pen READ pen WRITE setPen NOTIFY penChanged)
Q_PROPERTY(QBrush brush READ brush WRITE setBrush NOTIFY brushChanged)
+ Q_PROPERTY(int count READ count NOTIFY countChanged REVISION 1)
public:
explicit QBoxPlotSeries(QObject *parent = 0);
~QBoxPlotSeries();