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