##// END OF EJS Templates
Fix series type() docs
Jani Honkonen -
r1345:b13e0c5c83a4
parent child
Show More
@@ -47,12 +47,6 QTCOMMERCIALCHART_BEGIN_NAMESPACE
47 */
47 */
48
48
49 /*!
49 /*!
50 \fn virtual QSeriesType QAreaSeries::type() const
51 \brief Returns type of series.
52 \sa QAbstractSeries, QSeriesType
53 */
54
55 /*!
56 \fn QLineSeries* QAreaSeries::upperSeries() const
50 \fn QLineSeries* QAreaSeries::upperSeries() const
57 \brief Returns upperSeries used to define one of area boundaries.
51 \brief Returns upperSeries used to define one of area boundaries.
58 */
52 */
@@ -124,7 +118,9 QAreaSeries::~QAreaSeries()
124 {
118 {
125 }
119 }
126
120
127
121 /*!
122 Returns QChartSeries::SeriesTypeArea.
123 */
128 QAbstractSeries::SeriesType QAreaSeries::type() const
124 QAbstractSeries::SeriesType QAreaSeries::type() const
129 {
125 {
130 return QAbstractSeries::SeriesTypeArea;
126 return QAbstractSeries::SeriesTypeArea;
@@ -43,12 +43,6 QTCOMMERCIALCHART_BEGIN_NAMESPACE
43 */
43 */
44
44
45 /*!
45 /*!
46 \fn virtual QSeriesType QGroupedBarSeries::type() const
47 \brief Returns type of series.
48 \sa QAbstractSeries, QSeriesType
49 */
50
51 /*!
52 Constructs empty QGroupedBarSeries.
46 Constructs empty QGroupedBarSeries.
53 QGroupedBarSeries is QObject which is a child of a \a parent.
47 QGroupedBarSeries is QObject which is a child of a \a parent.
54 */
48 */
@@ -57,6 +51,9 QGroupedBarSeries::QGroupedBarSeries(QObject *parent)
57 {
51 {
58 }
52 }
59
53
54 /*!
55 Returns QChartSeries::SeriesTypeGroupedBar.
56 */
60 QAbstractSeries::SeriesType QGroupedBarSeries::type() const
57 QAbstractSeries::SeriesType QGroupedBarSeries::type() const
61 {
58 {
62 return QAbstractSeries::SeriesTypeGroupedBar;
59 return QAbstractSeries::SeriesTypeGroupedBar;
@@ -43,12 +43,6 QTCOMMERCIALCHART_BEGIN_NAMESPACE
43 */
43 */
44
44
45 /*!
45 /*!
46 \fn virtual QSeriesType QPercentBarSeries::type() const
47 \brief Returns type of series.
48 \sa QAbstractSeries, QSeriesType
49 */
50
51 /*!
52 Constructs empty QPercentBarSeries.
46 Constructs empty QPercentBarSeries.
53 QPercentBarSeries is QObject which is a child of a \a parent.
47 QPercentBarSeries is QObject which is a child of a \a parent.
54 */
48 */
@@ -57,6 +51,9 QPercentBarSeries::QPercentBarSeries(QObject *parent)
57 {
51 {
58 }
52 }
59
53
54 /*!
55 Returns QChartSeries::SeriesTypePercentBar.
56 */
60 QAbstractSeries::SeriesType QPercentBarSeries::type() const
57 QAbstractSeries::SeriesType QPercentBarSeries::type() const
61 {
58 {
62 return QAbstractSeries::SeriesTypePercentBar;
59 return QAbstractSeries::SeriesTypePercentBar;
@@ -43,12 +43,6 QTCOMMERCIALCHART_BEGIN_NAMESPACE
43 */
43 */
44
44
45 /*!
45 /*!
46 \fn virtual QSeriesType QStackedBarSeries::type() const
47 \brief Returns type of series.
48 \sa QAbstractSeries, QSeriesType
49 */
50
51 /*!
52 Constructs empty QStackedBarSeries.
46 Constructs empty QStackedBarSeries.
53 QStackedBarSeries is QObject which is a child of a \a parent.
47 QStackedBarSeries is QObject which is a child of a \a parent.
54 */
48 */
@@ -57,6 +51,9 QStackedBarSeries::QStackedBarSeries(QObject *parent)
57 {
51 {
58 }
52 }
59
53
54 /*!
55 Returns QChartSeries::SeriesTypeStackedBar.
56 */
60 QAbstractSeries::SeriesType QStackedBarSeries::type() const
57 QAbstractSeries::SeriesType QStackedBarSeries::type() const
61 {
58 {
62 return QAbstractSeries::SeriesTypeStackedBar;
59 return QAbstractSeries::SeriesTypeStackedBar;
General Comments 0
You need to be logged in to leave comments. Login now