KChart

ChartGraphicsItem.cpp
1/*
2 * SPDX-FileCopyrightText: 2001-2015 Klaralvdalens Datakonsult AB. All rights reserved.
3 *
4 * This file is part of the KD Chart library.
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9#include "ChartGraphicsItem.h"
10
11using namespace KChart;
12
13ChartGraphicsItem::ChartGraphicsItem()
15 , m_row( -1 )
16 , m_column( -1 )
17{
18}
19
20ChartGraphicsItem::ChartGraphicsItem( int row, int column )
22 , m_row( row )
23 , m_column( column )
24{
25}
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:14:24 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.