| 1 | // Copyright (C) 2016 The Qt Company Ltd. |
|---|---|
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
| 3 | |
| 4 | #ifndef QSTACKEDBARSERIES_H |
| 5 | #define QSTACKEDBARSERIES_H |
| 6 | |
| 7 | #include <QtCore/QStringList> |
| 8 | #include <QtCharts/QAbstractBarSeries> |
| 9 | |
| 10 | QT_BEGIN_NAMESPACE |
| 11 | |
| 12 | class QStackedBarSeriesPrivate; |
| 13 | |
| 14 | class Q_CHARTS_EXPORT QStackedBarSeries : public QAbstractBarSeries |
| 15 | { |
| 16 | Q_OBJECT |
| 17 | public: |
| 18 | explicit QStackedBarSeries(QObject *parent = nullptr); |
| 19 | ~QStackedBarSeries(); |
| 20 | QAbstractSeries::SeriesType type() const override; |
| 21 | |
| 22 | private: |
| 23 | Q_DECLARE_PRIVATE(QStackedBarSeries) |
| 24 | Q_DISABLE_COPY(QStackedBarSeries) |
| 25 | }; |
| 26 | |
| 27 | QT_END_NAMESPACE |
| 28 | |
| 29 | #endif // QSTACKEDBARSERIES_H |
| 30 |
