##// END OF EJS Templates
Fixed scatter not updating on setBrush/setPen
Fixed scatter not updating on setBrush/setPen

File last commit:

r1294:6b4eaf123ca6
r1305:0ab6c866962e
Show More
qhbarmodelmapper.cpp
42 lines | 873 B | text/x-c | CppLexer
/ src / barchart / qhbarmodelmapper.cpp
Marek Rosa
Added Vertical and Horizontal BarModelMappers
r1294 #include "qhbarmodelmapper.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
QHBarModelMapper::QHBarModelMapper(QObject *parent) :
QBarModelMapper(parent)
{
}
int QHBarModelMapper::firstBarRow() const
{
return QBarModelMapper::firstBarSection();
}
void QHBarModelMapper::setFirstBarRow(int firstBarRow)
{
return QBarModelMapper::setFirstBarSection(firstBarRow);
}
int QHBarModelMapper::lastBarRow() const
{
return QBarModelMapper::lastBarSection();
}
void QHBarModelMapper::setLastBarRow(int lastBarRow)
{
return QBarModelMapper::setLastBarSection(lastBarRow);
}
int QHBarModelMapper::categoriesRow() const
{
return QBarModelMapper::categoriesSection();
}
void QHBarModelMapper::setCategoriesRow(int categoriesRow)
{
return QBarModelMapper::setCategoriesSection(categoriesRow);
}
#include "moc_qhbarmodelmapper.cpp"
QTCOMMERCIALCHART_END_NAMESPACE