File indexing completed on 2024-05-12 04:20:28

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 #include "ChartGraphicsItem.h"
0010 
0011 using namespace KChart;
0012 
0013 ChartGraphicsItem::ChartGraphicsItem()
0014     : QGraphicsPolygonItem()
0015     , m_row( -1 )
0016     , m_column( -1 )
0017 {
0018 }
0019 
0020 ChartGraphicsItem::ChartGraphicsItem( int row, int column )
0021     : QGraphicsPolygonItem()
0022     , m_row( row )
0023     , m_column( column )
0024 {
0025 }