##// END OF EJS Templates
enablers for tooltip and floating values, bug fixing, updated examples. tidying up the code
enablers for tooltip and floating values, bug fixing, updated examples. tidying up the code

File last commit:

r173:5bd6f6e4373b
r296:8254aab7233d
Show More
qbarcategory.cpp
27 lines | 418 B | text/x-c | CppLexer
#include "qbarcategory.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
QBarCategory::QBarCategory()
{
}
QBarCategory& QBarCategory::operator << (const QString &label)
{
mList.append(label);
return *this;
}
int QBarCategory::count()
{
return mList.count();
}
QString QBarCategory::label(int category)
{
return mList.at(category);
}
// TODO?:
//#include "moc_qbarcategory.cpp"
QTCOMMERCIALCHART_END_NAMESPACE