##// END OF EJS Templates
Fix pie autotests...
Fix pie autotests Legend is now on by default which broke some tests.

File last commit:

r1165:242d6e21d71f
r1192:28f90ff1c65f
Show More
declarativebarseries.cpp
97 lines | 2.5 KiB | text/x-c | CppLexer
/ qmlplugin / declarativebarseries.cpp
/****************************************************************************
**
** Copyright (C) 2012 Digia Plc
** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
** This file is part of the Qt Commercial Charts Add-on.
**
** $QT_BEGIN_LICENSE$
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
** $QT_END_LICENSE$
**
****************************************************************************/
#include "declarativebarseries.h"
#include "declarativechart.h"
#include <QBarSet>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
DeclarativeBarSet::DeclarativeBarSet(QObject *parent) :
QBarSet("", parent)
{
}
QVariantList DeclarativeBarSet::values()
{
QVariantList values;
for (int i(0); i < count(); i++)
values.append(QVariant(at(i)));
return values;
}
void DeclarativeBarSet::setValues(QVariantList values)
{
while (count())
remove(count() - 1);
for (int i(0); i < values.count(); i++) {
if (values.at(i).canConvert(QVariant::Double))
append(values[i].toDouble());
}
}
DeclarativeBarSeries::DeclarativeBarSeries(QDeclarativeItem *parent) :
QBarSeries(parent)
{
}
void DeclarativeBarSeries::classBegin()
{
}
void DeclarativeBarSeries::componentComplete()
{
// if (model())
// setModelMapping(0, 1, 1, Qt::Vertical);
}
bool DeclarativeBarSeries::setDeclarativeModel(DeclarativeBarModel *model)
{
QAbstractItemModel *m = qobject_cast<QAbstractItemModel *>(model);
bool value(false);
if (m) {
setModel(m);
//setModelMapping(int categories, int bottomBoundary, int topBoundary, Qt::Orientation orientation = Qt::Vertical);
// setModelMapping(0, 1, 1, Qt::Vertical);
} else {
qWarning("DeclarativeBarSeries: Illegal model");
}
return value;
}
DeclarativeBarModel *DeclarativeBarSeries::declarativeModel()
{
return qobject_cast<DeclarativeBarModel *>(model());
}
void DeclarativeBarSeries::setBarCategories(QStringList categories)
{
setCategories(categories);
}
QStringList DeclarativeBarSeries::barCategories()
{
return categories();
}
#include "moc_declarativebarseries.cpp"
QTCOMMERCIALCHART_END_NAMESPACE