##// END OF EJS Templates
Fixed baranimation blinking
Fixed baranimation blinking

File last commit:

r2316:74962bdcee07
r2320:b9410ebe3045
Show More
qpercentbarseries.cpp
118 lines | 3.4 KiB | text/x-c | CppLexer
Jani Honkonen
Add license headers
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
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 #include "qpercentbarseries.h"
Michal Klocek
Refactor to use qseries private for implmentation interface...
r943 #include "qpercentbarseries_p.h"
#include "percentbarchartitem_p.h"
#include "chartdataset_p.h"
#include "charttheme_p.h"
Marek Rosa
renamed QValueAxis related files
r1805 #include "qvalueaxis.h"
Michal Klocek
Refactor to use qseries private for implmentation interface...
r943
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 QTCOMMERCIALCHART_BEGIN_NAMESPACE
/*!
\class QPercentBarSeries
sauimone
better brief descriptions for barcharts
r1502 \brief Series for creating percent bar chart
Tero Ahola
Documentation fixes....
r995 \mainclass
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338
sauimone
Fixed category handling of barcharts. Now the categories can be undefined. Updated documentation.
r1208 QPercentBarSeries represents a series of data shown as bars. The purpose of this class is to draw bars
as stacks, where each bar is shown as percentage of all bars in that category.
QPercentBarSeries groups the data from sets to categories, which are defined by a QStringList.
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338
Tero Ahola
Documentation fixes....
r995 See the \l {PercentbarChart Example} {percent bar chart example} to learn how to create a percent bar chart.
\image examples_percentbarchart.png
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338
sauimone
renamed barseries files to abstractbarseries
r1586 \sa QBarSet, QStackedBarSeries, QAbstractBarSeries
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 */
Tero Ahola
Documenting QML bar series API
r1489 /*!
\qmlclass PercentBarSeries QPercentBarSeries
Michal Klocek
Adds createDefaultAxes logic
r1588 \inherits QAbstractBarSeries
Tero Ahola
Documenting QML bar series API
r1489
The following QML shows how to create a simple percent bar chart:
sauimone
documentation update
r1618 \snippet ../demos/qmlchart/qml/qmlchart/View8.qml 1
Tero Ahola
Documenting QML bar series API
r1489 \beginfloatleft
sauimone
documentation update
r1618 \image demos_qmlchart8.png
Tero Ahola
Documenting QML bar series API
r1489 \endfloat
\clearfloat
*/
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338
/*!
sauimone
Fixed category handling of barcharts. Now the categories can be undefined. Updated documentation.
r1208 Constructs empty QPercentBarSeries.
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 QPercentBarSeries is QObject which is a child of a \a parent.
*/
sauimone
Fixed category handling of barcharts. Now the categories can be undefined. Updated documentation.
r1208 QPercentBarSeries::QPercentBarSeries(QObject *parent)
sauimone
QBarSeries to QAbstractBarSeries
r1584 : QAbstractBarSeries(*new QPercentBarSeriesPrivate(this), parent)
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 {
}
sauimone
fixed warnings from barchart docs
r1850 /*!
Destructor. Removes series from chart.
*/
Michal Klocek
Fixes wrong bar destruction by adding destructor for bar*series , note this breaks ABI
r1727 QPercentBarSeries::~QPercentBarSeries()
{
Q_D(QPercentBarSeries);
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 }
Jani Honkonen
Fix series type() docs
r1345 /*!
Returns QChartSeries::SeriesTypePercentBar.
*/
Michal Klocek
Fixes to API , QSeriesType -> SeriesType , add missing getters
r1107 QAbstractSeries::SeriesType QPercentBarSeries::type() const
Michal Klocek
Adds big fat pimpl to series classes...
r938 {
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 return QAbstractSeries::SeriesTypePercentBar;
Michal Klocek
Adds big fat pimpl to series classes...
r938 }
Michal Klocek
Refactor to use qseries private for implmentation interface...
r943 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sauimone
QBarSeries to QAbstractBarSeries
r1584 QPercentBarSeriesPrivate::QPercentBarSeriesPrivate(QPercentBarSeries *q) : QAbstractBarSeriesPrivate(q)
Michal Klocek
Refactor to use qseries private for implmentation interface...
r943 {
}
Michal Klocek
Refactors internals...
r2273 void QPercentBarSeriesPrivate::initializeDomain()
Michal Klocek
Refactor to use qseries private for implmentation interface...
r943 {
Michal Klocek
Refactors internals...
r2273 qreal minX(domain()->minX());
qreal minY(domain()->minY());
qreal maxX(domain()->maxX());
qreal maxY(domain()->maxY());
Michal Klocek
Refactor to use qseries private for implmentation interface...
r943
sauimone
removed categories from barseries. categories are now only on axis
r1321 qreal x = categoryCount();
Marek Rosa
Added casting to qreal in qMin, qFuzzyCompare calls to fix build on arm
r1679 minX = qMin(minX, - (qreal)0.5);
maxX = qMax(maxX, x - (qreal)0.5);
Michal Klocek
Refactor to use qseries private for implmentation interface...
r943 minY = 0;
maxY = 100;
Michal Klocek
Refactors internals...
r2273 domain()->setRange(minX, maxX, minY, maxY);
Michal Klocek
Refactor to use qseries private for implmentation interface...
r943 }
Michal Klocek
Refactors internals...
r2273 void QPercentBarSeriesPrivate::initializeGraphics(QGraphicsItem* parent)
Michal Klocek
Refactor to use qseries private for implmentation interface...
r943 {
Q_Q(QPercentBarSeries);
Michal Klocek
Refactors internals...
r2273 PercentBarChartItem *bar = new PercentBarChartItem(q,parent);
m_item.reset(bar);
QAbstractSeriesPrivate::initializeGraphics(parent);
}
Michal Klocek
Refactor to use qseries private for implmentation interface...
r943
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 #include "moc_qpercentbarseries.cpp"
QTCOMMERCIALCHART_END_NAMESPACE