qseries.cpp
71 lines
| 1.8 KiB
| text/x-c
|
CppLexer
/ src / qseries.cpp
Michal Klocek
|
r360 | #include "qseries.h" | ||
sauimone
|
r62 | |||
Tero Ahola
|
r309 | /*! | ||
Michal Klocek
|
r360 | \class QSeries | ||
Tero Ahola
|
r309 | \brief Base class for all QtCommercial Chart series. | ||
\mainclass | ||||
Tero Ahola
|
r310 | |||
Usually you use the series type specific inherited classes instead of the base class. | ||||
\sa QScatterSeries | ||||
Tero Ahola
|
r309 | */ | ||
/*! | ||||
Michal Klocek
|
r360 | \enum QSeries::QSeriesType | ||
Tero Ahola
|
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
|
r360 | \fn QSeries::QSeries(QObject *parent) | ||
Tero Ahola
|
r309 | \brief Constructs ChartSeries object with \a parent. | ||
*/ | ||||
/*! | ||||
Michal Klocek
|
r360 | \fn QSeries::~QSeries() | ||
Tero Ahola
|
r309 | \brief Virtual destructor for the chart series. | ||
*/ | ||||
/*! | ||||
Michal Klocek
|
r360 | \fn QSeriesType QSeries::type() const | ||
Tero Ahola
|
r309 | \brief The type of the series. | ||
*/ | ||||
/*! | ||||
Michal Klocek
|
r360 | \fn bool QSeries::setModel(QAbstractItemModel *model) | ||
Tero Ahola
|
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
|
r387 | /*! | ||
sauimone
|
r396 | \fn QList<QSeries::Legend> QSeries::legend() | ||
sauimone
|
r387 | \brief Returns the legend of the series. If series is empty, empty list is returned. | ||
*/ | ||||
Jani Honkonen
|
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
|
r62 | QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||
Michal Klocek
|
r360 | #include "moc_qseries.cpp" | ||
sauimone
|
r62 | QTCOMMERCIALCHART_END_NAMESPACE | ||