#include "qbarset.h" #include #include QTCOMMERCIALCHART_BEGIN_NAMESPACE /*! \class QBarSet \brief part of QtCommercial chart API. QBarSet represents one set of bars. Set of bars contains one data value for each category. First value of set is assumed to belong to first category, second to second category and so on. If set has fewer values than there are categories, then the missing values are assumed to be at the end of set. For missing values in middle of a set, numerical value of zero is used. \mainclass \sa QBarSeries, QStackedBarSeries, QPercentBarSeries */ /*! \fn void QBarSet::clicked(QString category) \brief signals that set has been clicked Parameter \a category describes on which category was clicked */ /*! \fn void QBarSet::rightClicked(QString category) \brief signals that set has been clicked with right mouse button Parameter \a category describes on which category was clicked */ /*! \fn void QBarSet::hoverEnter(QPoint pos) \brief signals that mouse has entered over the set at position \a pos. */ /*! \fn void QBarSet::hoverLeave() \brief signals that mouse has left from the set. */ /*! \fn void QBarSet::toggleFloatingValues() \brief \internal */ /*! \fn void QBarSet::showToolTip(QPoint pos, QString tip) \brief \internal \a pos \a tip */ /*! Constructs QBarSet with a name of \a name and with parent of \a parent */ QBarSet::QBarSet(QString name, QObject *parent) : QObject(parent) ,mName(name) { } /*! Sets new \a name for set. */ void QBarSet::setName(QString name) { mName = name; } /*! Returns name of the set. */ QString QBarSet::name() { return mName; } /*! Appends new value \a value to the end of set. */ QBarSet& QBarSet::operator << (const qreal &value) { mValues.append(value); return *this; } /*! Returns count of values in set. */ int QBarSet::count() { return mValues.count(); } /*! Returns value of set indexed by \a index */ qreal QBarSet::valueAt(int index) { return mValues.at(index); } /*! Sets a new value \a value to set, indexed by \a index */ void QBarSet::setValue(int index, qreal value) { mValues.replace(index,value); } /*! Returns total sum of all values in barset. */ qreal QBarSet::total() { qreal total(0); for (int i=0; i