##// END OF EJS Templates
Split piechartdrilldown to different files
Split piechartdrilldown to different files

File last commit:

r809:ca452bc5066a
r851:1af4a9173a8c
Show More
qseries.cpp
87 lines | 2.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$
**
****************************************************************************/
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.
*/
Jani Honkonen
Add doc for QSeries title stuff
r414 /*!
Tero Ahola
Title and name of QSeries replaced with name
r731 \fn void QSeries::setName(QString name)
\brief Sets a \a name for the series.
Jani Honkonen
Add doc for QSeries title stuff
r414
Tero Ahola
Title and name of QSeries replaced with name
r731 The name of a series is shown in the legend for QXYSeries.
\sa QChart::setTitle()
Jani Honkonen
Doc fixes for pie
r809 \sa QPieSlice::setLabel()
Tero Ahola
Title and name of QSeries replaced with name
r731 \sa QBarSet::setName()
Jani Honkonen
Add doc for QSeries title stuff
r414 */
/*!
Tero Ahola
Title and name of QSeries replaced with name
r731 \fn QString QSeries::name()
\brief Returns the name of the series.
Jani Honkonen
Add doc for QSeries title stuff
r414 */
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