main.cpp
93 lines
| 2.4 KiB
| text/x-c
|
CppLexer
Michal Klocek
|
r747 | /**************************************************************************** | ||
Jani Honkonen
|
r830 | ** | ||
Miikka Heikkinen
|
r2433 | ** Copyright (C) 2013 Digia Plc | ||
Jani Honkonen
|
r830 | ** 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
|
r747 | |||
sauimone
|
r101 | #include <QApplication> | ||
#include <QMainWindow> | ||||
Michal Klocek
|
r747 | #include <QChartView> | ||
#include <QPercentBarSeries> | ||||
#include <QBarSet> | ||||
sauimone
|
r891 | #include <QLegend> | ||
Marek Rosa
|
r1809 | #include <QBarCategoryAxis> | ||
sauimone
|
r101 | |||
QTCOMMERCIALCHART_USE_NAMESPACE | ||||
int main(int argc, char *argv[]) | ||||
{ | ||||
QApplication a(argc, argv); | ||||
Jani Honkonen
|
r883 | |||
Michal Klocek
|
r747 | //![1] | ||
sauimone
|
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
|
r101 | |||
sauimone
|
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; | ||||
sauimone
|
r1321 | //![1] | ||
Jani Honkonen
|
r883 | |||
sauimone
|
r1321 | //![2] | ||
Jani Honkonen
|
r2102 | QPercentBarSeries *series = new QPercentBarSeries(); | ||
sauimone
|
r1194 | series->append(set0); | ||
series->append(set1); | ||||
series->append(set2); | ||||
series->append(set3); | ||||
series->append(set4); | ||||
sauimone
|
r1321 | //![2] | ||
Jani Honkonen
|
r883 | |||
sauimone
|
r1321 | //![3] | ||
Jani Honkonen
|
r2102 | QChart *chart = new QChart(); | ||
Michal Klocek
|
r747 | chart->addSeries(series); | ||
sauimone
|
r1623 | chart->setTitle("Simple percentbarchart example"); | ||
sauimone
|
r1863 | chart->setAnimationOptions(QChart::SeriesAnimations); | ||
sauimone
|
r1321 | //![3] | ||
//![4] | ||||
QStringList categories; | ||||
categories << "Jan" << "Feb" << "Mar" << "Apr" << "May" << "Jun"; | ||||
Jani Honkonen
|
r2102 | QBarCategoryAxis *axis = new QBarCategoryAxis(); | ||
Michal Klocek
|
r1541 | axis->append(categories); | ||
Michal Klocek
|
r1577 | chart->createDefaultAxes(); | ||
Jani Honkonen
|
r2098 | chart->setAxisX(axis, series); | ||
Michal Klocek
|
r747 | //![4] | ||
Jani Honkonen
|
r883 | |||
Michal Klocek
|
r747 | //![5] | ||
sauimone
|
r891 | chart->legend()->setVisible(true); | ||
Tero Ahola
|
r1357 | chart->legend()->setAlignment(Qt::AlignBottom); | ||
Michal Klocek
|
r747 | //![5] | ||
Jani Honkonen
|
r883 | |||
Michal Klocek
|
r747 | //![6] | ||
Jani Honkonen
|
r2102 | QChartView *chartView = new QChartView(chart); | ||
sauimone
|
r891 | chartView->setRenderHint(QPainter::Antialiasing); | ||
//![6] | ||||
//![7] | ||||
Michal Klocek
|
r747 | QMainWindow window; | ||
sauimone
|
r276 | window.setCentralWidget(chartView); | ||
sauimone
|
r101 | window.resize(400, 300); | ||
window.show(); | ||||
sauimone
|
r891 | //![7] | ||
Jani Honkonen
|
r883 | |||
sauimone
|
r101 | return a.exec(); | ||
} | ||||