##// END OF EJS Templates
Fixed isVisible implementation in XY series
Fixed isVisible implementation in XY series

File last commit:

r1331:c415cc6dbfb2
r1346:4fe424a18505
Show More
qhbarmodelmapper.cpp
51 lines | 1.1 KiB | text/x-c | CppLexer
#include "qhbarmodelmapper.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
/*!
\class QHBarModelMapper
\brief part of QtCommercial chart API.
\mainclass
Nothing here yet
*/
QHBarModelMapper::QHBarModelMapper(QObject *parent) :
QBarModelMapper(parent)
{
QBarModelMapper::setOrientation(Qt::Horizontal);
}
int QHBarModelMapper::firstBarSetRow() const
{
return QBarModelMapper::firstBarSetSection();
}
void QHBarModelMapper::setFirstBarSetRow(int firstBarSetRow)
{
return QBarModelMapper::setFirstBarSetSection(firstBarSetRow);
}
int QHBarModelMapper::lastBarSetRow() const
{
return QBarModelMapper::lastBarSetSection();
}
void QHBarModelMapper::setLastBarSetRow(int lastBarSetRow)
{
return QBarModelMapper::setLastBarSetSection(lastBarSetRow);
}
int QHBarModelMapper::categoriesRow() const
{
return QBarModelMapper::categoriesSection();
}
void QHBarModelMapper::setCategoriesRow(int categoriesRow)
{
return QBarModelMapper::setCategoriesSection(categoriesRow);
}
#include "moc_qhbarmodelmapper.cpp"
QTCOMMERCIALCHART_END_NAMESPACE