##// END OF EJS Templates
Replaced NOTE: with Note: in modelmapper classes and qdatetimeaxis to remove it from QtCreator TODO entries
Replaced NOTE: with Note: in modelmapper classes and qdatetimeaxis to remove it from QtCreator TODO entries

File last commit:

r2316:74962bdcee07
r2396:240c05f01c11
Show More
qhorizontalstackedbarseries.cpp
115 lines | 3.8 KiB | text/x-c | CppLexer
/ src / barchart / horizontal / stacked / qhorizontalstackedbarseries.cpp
Jani Honkonen
add missing license statements
r1916 /****************************************************************************
**
** 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
horizontal stacked barchart
r1685 #include "qhorizontalstackedbarseries.h"
#include "qhorizontalstackedbarseries_p.h"
#include "horizontalstackedbarchartitem_p.h"
#include "chartdataset_p.h"
#include "charttheme_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
horizontal barchart doc update
r1793 /*!
\class QHorizontalStackedBarSeries
\brief Series for creating horizontal stacked bar chart
\mainclass
sauimone
horizontal stacked barchart
r1685
sauimone
horizontal barchart doc update
r1793 QHorizontalStackedBarSeries represents a series of data shown as bars. The purpose of this class is to draw bars
as groups, where bars in same category are grouped next to each other. QHorizontalStackedBarSeries groups the data
from sets to categories, which are defined by a QStringList.
See the \l {HorizontalStackedBarChart Example} {horizontal stacked bar chart example} to learn how to create a horizontal stacked bar chart.
\image examples_horizontalstackedbarchart.png
\sa QBarSet, QBarSeries, QPercentBarSeries, QAbstractBarSeries, QStackedBarSeries, QHorizontalPercentBarSeries, QHorizontalBarSeries
*/
sauimone
qml documentation for horizontal barcharts
r1901 /*!
\qmlclass HorizontalStackedBarSeries QHorizontalStackedBarSeries
\inherits QAbstractBarSeries
The following QML shows how to create a simple horizontal stacked bar chart:
\snippet ../demos/qmlchart/qml/qmlchart/View10.qml 1
\beginfloatleft
\image demos_qmlchart10.png
\endfloat
\clearfloat
*/
sauimone
horizontal barchart doc update
r1793
/*!
Constructs empty QHorizontalStackedBarSeries.
QHorizontalStackedBarSeries is QObject which is a child of a \a parent.
*/
Jani Honkonen
more coding style fixes for src-folder...
r2104 QHorizontalStackedBarSeries::QHorizontalStackedBarSeries(QObject *parent)
: QAbstractBarSeries(*new QHorizontalStackedBarSeriesPrivate(this), parent)
sauimone
horizontal stacked barchart
r1685 {
}
sauimone
horizontal barchart doc update
r1793 /*!
Destructor
Removes series from chart.
*/
Michal Klocek
Fixes wrong bar destruction by adding destructor for bar*series , note this breaks ABI
r1727 QHorizontalStackedBarSeries::~QHorizontalStackedBarSeries()
{
Q_D(QHorizontalStackedBarSeries);
Michal Klocek
Refactors internals...
r2273 if (d->m_chart)
d->m_chart->removeSeries(this);
Michal Klocek
Fixes wrong bar destruction by adding destructor for bar*series , note this breaks ABI
r1727 }
sauimone
horizontal barchart doc update
r1793 /*!
Returns QChartSeries::SeriesTypeHorizontalStackedBar.
*/
sauimone
horizontal stacked barchart
r1685 QAbstractSeries::SeriesType QHorizontalStackedBarSeries::type() const
{
return QAbstractSeries::SeriesTypeHorizontalStackedBar;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
QHorizontalStackedBarSeriesPrivate::QHorizontalStackedBarSeriesPrivate(QHorizontalStackedBarSeries *q) : QAbstractBarSeriesPrivate(q)
{
}
Michal Klocek
Refactors internals...
r2273 void QHorizontalStackedBarSeriesPrivate::initializeDomain()
sauimone
horizontal stacked barchart
r1685 {
Michal Klocek
Refactors internals...
r2273 qreal minX(domain()->minX());
qreal minY(domain()->minY());
qreal maxX(domain()->maxX());
qreal maxY(domain()->maxY());
sauimone
horizontal stacked barchart
r1685
qreal y = categoryCount();
sauimone
Better support for negative values in stacked barcharts. Negative values are stacked from zero to negative direction. Positive values are stacked from zero to positive direction.
r1897 minX = qMin(minX, bottom());
sauimone
horizontal percent barchart & example
r1688 minY = qMin(minY, - (qreal)0.5);
sauimone
Better support for negative values in stacked barcharts. Negative values are stacked from zero to negative direction. Positive values are stacked from zero to positive direction.
r1897 maxX = qMax(maxX, top());
sauimone
horizontal percent barchart & example
r1688 maxY = qMax(maxY, y - (qreal)0.5);
sauimone
horizontal stacked barchart
r1685
Michal Klocek
Refactors internals...
r2273 domain()->setRange(minX, maxX, minY, maxY);
sauimone
horizontal stacked barchart
r1685 }
Michal Klocek
Refactors internals...
r2273 void QHorizontalStackedBarSeriesPrivate::initializeGraphics(QGraphicsItem *parent)
sauimone
horizontal stacked barchart
r1685 {
Q_Q(QHorizontalStackedBarSeries);
Michal Klocek
Refactors internals...
r2273 HorizontalStackedBarChartItem *bar = new HorizontalStackedBarChartItem(q,parent);
m_item.reset(bar);
QAbstractSeriesPrivate::initializeGraphics(parent);
}
sauimone
horizontal stacked barchart
r1685
#include "moc_qhorizontalstackedbarseries.cpp"
QTCOMMERCIALCHART_END_NAMESPACE