##// END OF EJS Templates
Improved oscilloscope demo functionality
Improved oscilloscope demo functionality

File last commit:

r1755:1a6e0b1256e1
r1785:bb11155e67e1
Show More
horizontalstackedbarchart.cpp
60 lines | 1.8 KiB | text/x-c | CppLexer
/ demos / chartviewer / charts / horizontalstackedbarchart.cpp
Michal Klocek
Adds charts to chartsviewer
r1753 /****************************************************************************
**
** 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 "charts.h"
#include "qchart.h"
Michal Klocek
Add horizontal charts to chartviewer
r1755 #include "qhorizontalstackedbarseries.h"
Michal Klocek
Adds charts to chartsviewer
r1753 #include "qbarset.h"
Michal Klocek
Add horizontal charts to chartviewer
r1755 class HorizontalStackedBarChart: public Chart
Michal Klocek
Adds charts to chartsviewer
r1753 {
public:
Michal Klocek
Add horizontal charts to chartviewer
r1755 HorizontalStackedBarChart(){
Michal Klocek
Adds charts to chartsviewer
r1753 initialize();
}
Michal Klocek
Add horizontal charts to chartviewer
r1755 QString name() { return QObject::tr("HorizontalStackedBarChart"); }
Michal Klocek
Adds charts to chartsviewer
r1753 QString category() { return QObject::tr("BarSeries"); }
QString subCategory() { return QObject::tr("Vertical"); }
QChart* createChart(const DataTable& table)
{
QChart* chart = new QChart();
Michal Klocek
Add horizontal charts to chartviewer
r1755 chart->setTitle("Horizontal stacked chart");
Michal Klocek
Adds charts to chartsviewer
r1753
Michal Klocek
Add horizontal charts to chartviewer
r1755 QHorizontalStackedBarSeries* series = new QHorizontalStackedBarSeries(chart);
Michal Klocek
Adds charts to chartsviewer
r1753 for (int i(0); i < table.count(); i++) {
QBarSet *set = new QBarSet("Bar set " + QString::number(i));
foreach (Data data, table[i])
*set << data.first.y();
series->append(set);
}
chart->addSeries(series);
chart->createDefaultAxes();
return chart;
}
};
Michal Klocek
Add horizontal charts to chartviewer
r1755 DECLARE_CHART(HorizontalStackedBarChart)
Michal Klocek
Adds charts to chartsviewer
r1753