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