##// END OF EJS Templates
Documentation for QAbstractSeries
Tero Ahola -
r1343:605eff80eb99
parent child
Show More
@@ -69,13 +69,13 QTCOMMERCIALCHART_BEGIN_NAMESPACE
69 */
69 */
70
70
71 /*!
71 /*!
72 \fn void QAbstractSeries::setName(const QString& name)
72 \property QAbstractSeries::visible
73 \brief Sets a \a name for the series.
73 \brief whether the series is visible or not; true by default.
74 */
74
75
75 The name of a series is shown in the legend for QXYSeries.
76 /*!
76 \sa QChart::setTitle()
77 \fn void QAbstractSeries::visibleChanged()
77 \sa QPieSlice::setLabel()
78 Emitted when the series visibility changes.
78 \sa QBarSet::setName()
79 */
79 */
80
80
81 /*!
81 /*!
@@ -96,6 +96,14 QAbstractSeries::~QAbstractSeries()
96 if(d_ptr->m_dataset) qFatal("Still binded series detected !");
96 if(d_ptr->m_dataset) qFatal("Still binded series detected !");
97 }
97 }
98
98
99 /*!
100 \brief Sets a \a name for the series.
101
102 The name of a series is shown in the legend for QXYSeries.
103 \sa QChart::setTitle()
104 \sa QPieSlice::setLabel()
105 \sa QBarSet::setName()
106 */
99 void QAbstractSeries::setName(const QString& name)
107 void QAbstractSeries::setName(const QString& name)
100 {
108 {
101 if (name != d_ptr->m_name) {
109 if (name != d_ptr->m_name) {
General Comments 0
You need to be logged in to leave comments. Login now