##// END OF EJS Templates
minor. add TODO comments
minor. add TODO comments

File last commit:

r830:b345b831b8c1
r872:60ebc42c950c
Show More
main.cpp
74 lines | 2.1 KiB | text/x-c | CppLexer
Michal Klocek
Uninfy examples , updated public API changes
r747 /****************************************************************************
Jani Honkonen
Add/modify license headers
r830 **
** 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$
**
****************************************************************************/
Michal Klocek
Uninfy examples , updated public API changes
r747
sauimone
added missing example files :)
r96 #include <QApplication>
#include <QMainWindow>
Michal Klocek
Uninfy examples , updated public API changes
r747 #include <QChartView>
#include <QStackedBarSeries>
#include <QBarSet>
sauimone
added missing example files :)
r96
QTCOMMERCIALCHART_USE_NAMESPACE
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Michal Klocek
Uninfy examples , updated public API changes
r747 //![1]
QBarCategories categories;
sauimone
Updated barchart examples and documentation. Also bug fix to barchart model
r387 categories << "Jan" << "Feb" << "Mar" << "Apr" << "May" << "Jun";
Michal Klocek
Uninfy examples , updated public API changes
r747 //![1]
//![2]
sauimone
enablers for tooltip and floating values, bug fixing, updated examples. tidying up the code
r296 QBarSet *set0 = new QBarSet("Bub");
QBarSet *set1 = new QBarSet("Bob");
QBarSet *set2 = new QBarSet("Guybrush");
QBarSet *set3 = new QBarSet("Larry");
QBarSet *set4 = new QBarSet("Zak");
sauimone
added missing example files :)
r96
sauimone
Updated barchart examples and documentation. Also bug fix to barchart model
r387 *set0 << 1 << 2 << 3 << 4 << 5 << 6;
*set1 << 5 << 0 << 0 << 4 << 0 << 7;
*set2 << 3 << 5 << 8 << 13 << 8 << 5;
*set3 << 5 << 6 << 7 << 3 << 4 << 5;
*set4 << 9 << 7 << 5 << 3 << 1 << 2;
Michal Klocek
Uninfy examples , updated public API changes
r747 //![2]
//![3]
sauimone
Updated barchart examples and documentation. Also bug fix to barchart model
r387 QStackedBarSeries* series = new QStackedBarSeries(categories);
sauimone
const to getters, renamed addBarset to appendBarset
r776 series->appendBarSet(set0);
series->appendBarSet(set1);
series->appendBarSet(set2);
series->appendBarSet(set3);
series->appendBarSet(set4);
Michal Klocek
Uninfy examples , updated public API changes
r747 //![3]
//![4]
QChart* chart = new QChart();
chart->addSeries(series);
chart->setTitle("Simple stackedbarchart example");
//![4]
//![5]
QChartView* chartView = new QChartView(chart);
chartView->setRenderHint(QPainter::Antialiasing);
//![5]
//![6]
QMainWindow window;
sauimone
updated barchart examples. minor fixes
r276 window.setCentralWidget(chartView);
sauimone
added missing example files :)
r96 window.resize(400, 300);
window.show();
Michal Klocek
Uninfy examples , updated public API changes
r747 //![6]
sauimone
added missing example files :)
r96 return a.exec();
}