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
9QT_BEGIN_NAMESPACE
10
11class QHorizontalStackedBarSeriesPrivate;
12
13class Q_CHARTS_EXPORT QHorizontalStackedBarSeries : public QAbstractBarSeries
14{
15 Q_OBJECT
16public:
17 explicit QHorizontalStackedBarSeries(QObject *parent = nullptr);
18 ~QHorizontalStackedBarSeries();
19 QAbstractSeries::SeriesType type() const override;
20
21private:
22 Q_DECLARE_PRIVATE(QHorizontalStackedBarSeries)
23 Q_DISABLE_COPY(QHorizontalStackedBarSeries)
24};
25
26QT_END_NAMESPACE
27
28#endif // QHORIZONTALSTACKEDBARSERIES_H
29

source code of qtcharts/src/charts/barchart/horizontal/stacked/qhorizontalstackedbarseries.h