##// END OF EJS Templates
Added axis related modifiers to theme
Added axis related modifiers to theme

File last commit:

r414:4e7addfef3f4
r548:426b0f7a9c96
Show More
qseries.cpp
71 lines | 1.8 KiB | text/x-c | CppLexer
Michal Klocek
Rename QChartSeries to QSeries
r360 #include "qseries.h"
sauimone
Refactored series creation.
r62
Tero Ahola
qdoc for QChartSeries
r309 /*!
Michal Klocek
Rename QChartSeries to QSeries
r360 \class QSeries
Tero Ahola
qdoc for QChartSeries
r309 \brief Base class for all QtCommercial Chart series.
\mainclass
Tero Ahola
Documenting QChartSeries continues
r310
Usually you use the series type specific inherited classes instead of the base class.
\sa QScatterSeries
Tero Ahola
qdoc for QChartSeries
r309 */
/*!
Michal Klocek
Rename QChartSeries to QSeries
r360 \enum QSeries::QSeriesType
Tero Ahola
qdoc for QChartSeries
r309
The type of the series object.
\value SeriesTypeLine
\value SeriesTypeArea
\value SeriesTypeBar
\value SeriesTypeStackedBar
\value SeriesTypePercentBar
\value SeriesTypePie
\value SeriesTypeScatter
\value SeriesTypeSpline
*/
/*!
Michal Klocek
Rename QChartSeries to QSeries
r360 \fn QSeries::QSeries(QObject *parent)
Tero Ahola
qdoc for QChartSeries
r309 \brief Constructs ChartSeries object with \a parent.
*/
/*!
Michal Klocek
Rename QChartSeries to QSeries
r360 \fn QSeries::~QSeries()
Tero Ahola
qdoc for QChartSeries
r309 \brief Virtual destructor for the chart series.
*/
/*!
Michal Klocek
Rename QChartSeries to QSeries
r360 \fn QSeriesType QSeries::type() const
Tero Ahola
qdoc for QChartSeries
r309 \brief The type of the series.
*/
/*!
Michal Klocek
Rename QChartSeries to QSeries
r360 \fn bool QSeries::setModel(QAbstractItemModel *model)
Tero Ahola
qdoc for QChartSeries
r309 \brief Use the \a model to provide data for the series. The model overrides possible user data
set with QChartSeries type specific data setters. For example if you call both
QScatterSeries::addData() and QScatterSeries::setModel, only the data provided by the model is
used by the series. Returns true if the model is valid for the series.
*/
sauimone
Updated barchart examples and documentation. Also bug fix to barchart model
r387 /*!
sauimone
minor documentation fixes for barchart
r396 \fn QList<QSeries::Legend> QSeries::legend()
sauimone
Updated barchart examples and documentation. Also bug fix to barchart model
r387 \brief Returns the legend of the series. If series is empty, empty list is returned.
*/
Jani Honkonen
Add doc for QSeries title stuff
r414 /*!
\fn void QSeries::setTitle(QString title)
\brief Sets a \a title for the series.
This is not used directly by the chart itself. It is up to the user to use this as for example
chart title.
\sa QChart::setChartTitle()
*/
/*!
\fn QString QSeries::title()
\brief Returns the title of the series.
*/
sauimone
Refactored series creation.
r62 QTCOMMERCIALCHART_BEGIN_NAMESPACE
Michal Klocek
Rename QChartSeries to QSeries
r360 #include "moc_qseries.cpp"
sauimone
Refactored series creation.
r62 QTCOMMERCIALCHART_END_NAMESPACE