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