##// END OF EJS Templates
Fonts and background of the themes...
Fonts and background of the themes The theme demo app window color now matches the theme

File last commit:

r387:23f0c228569f
r614:ac346143dd38
Show More
qpercentbarseries.cpp
36 lines | 995 B | text/x-c | CppLexer
/ src / barchart / qpercentbarseries.cpp
#include "qpercentbarseries.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
/*!
\class QPercentBarSeries
\brief part of QtCommercial chart API.
QPercentBarSeries represents a series of data shown as bars. Each bar of QBarSet is shown as percentage
of all bars in category. One QPercentBarSeries can contain multible QBarSet data sets.
QBarSeries groups the data from sets to categories, which are defined by QStringList.
\mainclass
\sa QBarSet, QStackedBarSeries, QBarSeries
*/
/*!
\fn virtual QSeriesType QPercentBarSeries::type() const
\brief Returns type of series.
\sa QSeries, QSeriesType
*/
/*!
Constructs empty QPercentBarSeries. Parameter \a categories defines the categories for chart.
QPercentBarSeries is QObject which is a child of a \a parent.
*/
QPercentBarSeries::QPercentBarSeries(QStringList categories, QObject *parent)
: QBarSeries(categories, parent)
{
}
#include "moc_qpercentbarseries.cpp"
QTCOMMERCIALCHART_END_NAMESPACE