KChart

KChartRadarCoordinatePlane.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 "KChartRadarCoordinatePlane.h"
10#include "KChartRadarCoordinatePlane_p.h"
11
12
13using namespace KChart;
14
15#define d d_func()
16
17KChart::RadarCoordinatePlane::RadarCoordinatePlane ( Chart* parent ) :
18 PolarCoordinatePlane( new Private(), parent )
19{
20}
21KChart::RadarCoordinatePlane::~RadarCoordinatePlane()
22{
23}
24
26{
27 d->textAttributes = attr;
28}
29
31{
32 return d->textAttributes;
33}
34
35void RadarCoordinatePlane::init()
36{
37 // this block left empty intentionally
38}
void setTextAttributes(const TextAttributes &attr)
Set the attributes to be used for axis captions.
const TextAttributes textAttributes() const
A set of text attributes.
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.