File indexing completed on 2024-12-15 04:02:26

0001 /*
0002  * SPDX-FileCopyrightText: 2001-2015 Klaralvdalens Datakonsult AB. All rights reserved.
0003  *
0004  * This file is part of the KD Chart library.
0005  *
0006  * SPDX-License-Identifier: GPL-2.0-or-later
0007  */
0008 
0009 #ifndef KCHARTPERCENTBARDIAGRAM_P_H
0010 #define KCHARTPERCENTBARDIAGRAM_P_H
0011 
0012 
0013 #include "KChartBarDiagram_p.h"
0014 
0015 namespace KChart {
0016 
0017     class PercentBarDiagram : public BarDiagram::BarDiagramType
0018     {
0019     public:
0020         explicit PercentBarDiagram( BarDiagram* );
0021         ~PercentBarDiagram() override {}
0022         BarDiagram::BarType type() const override;
0023         const QPair<QPointF,  QPointF> calculateDataBoundaries() const override;
0024         void paint( PaintContext* ctx ) override;
0025     };
0026 
0027 }
0028 
0029 #endif