File indexing completed on 2024-12-15 04:02:27
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 KCHARTSTACKEDLINEDIAGRAM_P_H 0010 #define KCHARTSTACKEDLINEDIAGRAM_P_H 0011 0012 #include "KChartLineDiagram_p.h" 0013 0014 namespace KChart { 0015 0016 class StackedLineDiagram : public LineDiagram::LineDiagramType 0017 { 0018 public: 0019 explicit StackedLineDiagram( LineDiagram* ); 0020 ~StackedLineDiagram() override {} 0021 LineDiagram::LineType type() const override; 0022 const QPair<QPointF, QPointF> calculateDataBoundaries() const override; 0023 void paint( PaintContext* ctx ) override; 0024 }; 0025 0026 } 0027 0028 #endif