drilldownchart.cpp
59 lines
| 1.6 KiB
| text/x-c
|
CppLexer
sauimone
|
r903 | /**************************************************************************** | ||
** | ||||
** Copyright (C) 2012 Digia Plc | ||||
** All rights reserved. | ||||
** For any questions to Digia, please use contact form at http://qt.digia.com | ||||
** | ||||
** This file is part of the Qt Commercial Charts Add-on. | ||||
** | ||||
** $QT_BEGIN_LICENSE$ | ||||
** Licensees holding valid Qt Commercial licenses may use this file in | ||||
** accordance with the Qt Commercial License Agreement provided with the | ||||
** Software or, alternatively, in accordance with the terms contained in | ||||
** a written agreement between you and Digia. | ||||
** | ||||
** If you have questions regarding the use of this file, please use | ||||
** contact form at http://qt.digia.com | ||||
** $QT_END_LICENSE$ | ||||
** | ||||
****************************************************************************/ | ||||
#include "drilldownchart.h" | ||||
Marek Rosa
|
r1809 | #include <QBarCategoryAxis> | ||
sauimone
|
r903 | |||
QTCOMMERCIALCHART_USE_NAMESPACE | ||||
DrilldownChart::DrilldownChart(QGraphicsItem *parent, Qt::WindowFlags wFlags) | ||||
: QChart(parent, wFlags) | ||||
,m_currentSeries(0) | ||||
{ | ||||
} | ||||
sauimone
|
r1414 | void DrilldownChart::changeSeries(DrilldownBarSeries *series) | ||
sauimone
|
r903 | { | ||
sauimone
|
r1414 | if (m_currentSeries) { | ||
sauimone
|
r903 | removeSeries(m_currentSeries); | ||
sauimone
|
r1414 | } | ||
sauimone
|
r903 | m_currentSeries = series; | ||
sauimone
|
r1414 | |||
// Reset axis | ||||
Marek Rosa
|
r1808 | QBarCategoryAxis* axis = new QBarCategoryAxis(); | ||
Michal Klocek
|
r1541 | axis->append(m_currentSeries->categories()); | ||
sauimone
|
r1414 | |||
sauimone
|
r903 | addSeries(series); | ||
Michal Klocek
|
r1558 | |||
Michal Klocek
|
r1577 | createDefaultAxes(); | ||
sauimone
|
r1601 | setAxisX(axis,series); | ||
Michal Klocek
|
r1541 | |||
sauimone
|
r903 | setTitle(series->name()); | ||
} | ||||
sauimone
|
r1563 | void DrilldownChart::handleClicked(int index, QBarSet *barset) | ||
sauimone
|
r903 | { | ||
Q_UNUSED(barset) | ||||
DrilldownBarSeries* series = static_cast<DrilldownBarSeries*> (sender()); | ||||
sauimone
|
r1321 | changeSeries(series->drilldownSeries(index)); | ||
sauimone
|
r903 | } | ||
sauimone
|
r904 | |||
#include "moc_drilldownchart.cpp" | ||||