##// END OF EJS Templates
Remove scaledomain ect. warnings from pie. Not going to be implemented (for now at least).
Remove scaledomain ect. warnings from pie. Not going to be implemented (for now at least).

File last commit:

r1112:938a9dbeab71
r1191:6223c1214e9d
Show More
main.cpp
88 lines | 2.3 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
percent bar chart
r101 #include <QApplication>
#include <QMainWindow>
Michal Klocek
Uninfy examples , updated public API changes
r747 #include <QChartView>
#include <QPercentBarSeries>
#include <QBarSet>
sauimone
turned legend on in barchart examples
r891 #include <QLegend>
sauimone
percent bar chart
r101
QTCOMMERCIALCHART_USE_NAMESPACE
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Jani Honkonen
Add newlines to examples to make docs nicer
r883
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]
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
Uninfy examples , updated public API changes
r747 //![2]
sauimone
politically correct names for barchart examples
r881 QBarSet *set0 = new QBarSet("Jane");
QBarSet *set1 = new QBarSet("John");
QBarSet *set2 = new QBarSet("Axel");
QBarSet *set3 = new QBarSet("Mary");
QBarSet *set4 = new QBarSet("Samantha");
sauimone
percent bar chart
r101
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]
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
Uninfy examples , updated public API changes
r747 //![3]
sauimone
separated categories from barseries constructor
r1112 QPercentBarSeries* series = new QPercentBarSeries();
series->setCategories(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);
Tero Ahola
Added Icy Blue and High Contrast theme
r757 //![3]
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
Uninfy examples , updated public API changes
r747 //![4]
QChart* chart = new QChart();
chart->addSeries(series);
Tero Ahola
Updated bar chart documentation
r971 chart->setTitle("Simple percentbarchart example");
Michal Klocek
Uninfy examples , updated public API changes
r747 //![4]
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
Uninfy examples , updated public API changes
r747 //![5]
sauimone
turned legend on in barchart examples
r891 chart->legend()->setVisible(true);
Jani Honkonen
Spelling fix QLegend::setAlignmnent -> setAlignment
r907 chart->legend()->setAlignment(QLegend::AlignmentBottom);
Michal Klocek
Uninfy examples , updated public API changes
r747 //![5]
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
Uninfy examples , updated public API changes
r747 //![6]
sauimone
turned legend on in barchart examples
r891 QChartView* chartView = new QChartView(chart);
chartView->setRenderHint(QPainter::Antialiasing);
//![6]
//![7]
Michal Klocek
Uninfy examples , updated public API changes
r747 QMainWindow window;
sauimone
updated barchart examples. minor fixes
r276 window.setCentralWidget(chartView);
sauimone
percent bar chart
r101 window.resize(400, 300);
window.show();
sauimone
turned legend on in barchart examples
r891 //![7]
Jani Honkonen
Add newlines to examples to make docs nicer
r883
sauimone
percent bar chart
r101 return a.exec();
}