qstackedbarseries.cpp
109 lines
| 3.3 KiB
| text/x-c
|
CppLexer
Jani Honkonen
|
r794 | /**************************************************************************** | ||
** | ||||
** 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$ | ||||
** | ||||
****************************************************************************/ | ||||
sauimone
|
r338 | #include "qstackedbarseries.h" | ||
Michal Klocek
|
r943 | #include "qstackedbarseries_p.h" | ||
#include "stackedbarchartitem_p.h" | ||||
#include "chartdataset_p.h" | ||||
#include "charttheme_p.h" | ||||
#include "chartanimator_p.h" | ||||
sauimone
|
r338 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
/*! | ||||
\class QStackedBarSeries | ||||
\brief part of QtCommercial chart API. | ||||
Tero Ahola
|
r995 | \mainclass | ||
sauimone
|
r338 | |||
sauimone
|
r1208 | QStackedBarSeries represents a series of data shown as bars. The purpose of this class is to draw bars | ||
as stacks, where bars in same category are stacked on top of each other. | ||||
sauimone
|
r377 | QStackedBarSeries groups the data from sets to categories, which are defined by QStringList. | ||
sauimone
|
r338 | |||
Tero Ahola
|
r995 | See the \l {StackedbarChart Example} {stacked bar chart example} to learn how to create a stacked bar chart. | ||
\image examples_stackedbarchart.png | ||||
sauimone
|
r338 | |||
sauimone
|
r377 | \sa QBarSet, QPercentBarSeries, QBarSeries | ||
sauimone
|
r338 | */ | ||
/*! | ||||
Michal Klocek
|
r360 | \fn virtual QSeriesType QStackedBarSeries::type() const | ||
sauimone
|
r338 | \brief Returns type of series. | ||
sauimone
|
r1208 | \sa QAbstractSeries, QSeriesType | ||
sauimone
|
r338 | */ | ||
/*! | ||||
sauimone
|
r1208 | Constructs empty QStackedBarSeries. | ||
sauimone
|
r338 | QStackedBarSeries is QObject which is a child of a \a parent. | ||
*/ | ||||
sauimone
|
r1208 | QStackedBarSeries::QStackedBarSeries(QObject *parent) | ||
: QBarSeries(*new QStackedBarSeriesPrivate(this), parent) | ||||
sauimone
|
r338 | { | ||
} | ||||
Michal Klocek
|
r1107 | QAbstractSeries::SeriesType QStackedBarSeries::type() const | ||
Michal Klocek
|
r938 | { | ||
Tero Ahola
|
r988 | return QAbstractSeries::SeriesTypeStackedBar; | ||
Michal Klocek
|
r938 | } | ||
Michal Klocek
|
r943 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
sauimone
|
r1208 | QStackedBarSeriesPrivate::QStackedBarSeriesPrivate(QStackedBarSeries *q) : QBarSeriesPrivate(q) | ||
Michal Klocek
|
r943 | { | ||
} | ||||
void QStackedBarSeriesPrivate::scaleDomain(Domain& domain) | ||||
{ | ||||
sauimone
|
r1209 | Q_Q(QStackedBarSeries); | ||
Michal Klocek
|
r943 | qreal minX(domain.minX()); | ||
qreal minY(domain.minY()); | ||||
qreal maxX(domain.maxX()); | ||||
qreal maxY(domain.maxY()); | ||||
int tickXCount(domain.tickXCount()); | ||||
int tickYCount(domain.tickYCount()); | ||||
sauimone
|
r1209 | qreal x = q->categoryCount(); | ||
sauimone
|
r962 | qreal y = maxCategorySum(); | ||
sauimone
|
r1228 | minX = qMin(minX, x) - 0.5; | ||
Michal Klocek
|
r943 | minY = qMin(minY, y); | ||
sauimone
|
r1228 | maxX = qMax(maxX, x) - 0.5; | ||
Michal Klocek
|
r943 | maxY = qMax(maxY, y); | ||
tickXCount = x+1; | ||||
Michal Klocek
|
r1078 | domain.setRange(minX,maxX,minY,maxY,tickXCount,tickYCount); | ||
Michal Klocek
|
r943 | } | ||
Chart* QStackedBarSeriesPrivate::createGraphics(ChartPresenter* presenter) | ||||
{ | ||||
Q_Q(QStackedBarSeries); | ||||
StackedBarChartItem* bar = new StackedBarChartItem(q,presenter); | ||||
if(presenter->animationOptions().testFlag(QChart::SeriesAnimations)) { | ||||
presenter->animator()->addAnimation(bar); | ||||
} | ||||
presenter->chartTheme()->decorate(q, presenter->dataSet()->seriesIndex(q)); | ||||
return bar; | ||||
} | ||||
sauimone
|
r338 | #include "moc_qstackedbarseries.cpp" | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||