##// END OF EJS Templates
QChart and QChartView now has some description for all the functions
QChart and QChartView now has some description for all the functions

File last commit:

r173:5bd6f6e4373b
r287:6e151fb989cd
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