From 0948467685b73bc73d8823ff30f92c7fa6985896 2013-04-08 07:39:43 From: Mika Salmela Date: 2013-04-08 07:39:43 Subject: [PATCH] Initial example application for boxplot. Change-Id: I0de3c3744ea03f5631426812937d6e7ce69b3d92 Reviewed-by: Mika Salmela --- diff --git a/examples/boxplotchart/boxplotchart.pro b/examples/boxplotchart/boxplotchart.pro new file mode 100644 index 0000000..f7301a4 --- /dev/null +++ b/examples/boxplotchart/boxplotchart.pro @@ -0,0 +1,5 @@ +!include( ../examples.pri ) { + error( "Couldn't find the examples.pri file!" ) +} +TARGET = boxplotchart +SOURCES += main.cpp diff --git a/examples/boxplotchart/main.cpp b/examples/boxplotchart/main.cpp new file mode 100644 index 0000000..f21ae6f --- /dev/null +++ b/examples/boxplotchart/main.cpp @@ -0,0 +1,107 @@ +/**************************************************************************** +** +** 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 +#include +#include +#include +#include +#include +#include + +#include +#include + +QTCOMMERCIALCHART_USE_NAMESPACE + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + +//![1] + QBarSet *set0 = new QBarSet("Jan"); + QBarSet *set1 = new QBarSet("Feb"); + QBarSet *set2 = new QBarSet("Mar"); + QBarSet *set3 = new QBarSet("Apr"); + QBarSet *set4 = new QBarSet("May"); + QBarSet *set5 = new QBarSet("Jun"); + + // low bot med top upp + *set0 << 3 << 4 << 4.4 << 6 << 7; + *set1 << 5 << 6 << 7.5 << 8 << 12; + *set2 << 3 << 5 << 5.7 << 8 << 9; + *set3 << 5 << 6 << 6.8 << 7 << 8; + *set4 << 4 << 5 << 5.2 << 6 << 7; + *set5 << 4 << 7 << 8.2 << 9 << 10; + + set0->setBrush(QBrush(QColor(Qt::yellow))); + + //set0->setColor(QColor(Qt::darkRed)); +//![1] + +//![2] + QBoxPlotSeries *series = new QBoxPlotSeries(); + series->append(set0); + series->append(set1); + series->append(set2); + series->append(set3); + series->append(set4); + series->append(set5); + series->type(); + series->setName("Box & Whiskers"); + //series->setBrush(QBrush(QColor(Qt::yellow))); +//![2] + +//![3] + QChart *chart = new QChart(); + chart->addSeries(series); + chart->setTitle("Simple boxplotchart example"); + chart->setAnimationOptions(QChart::SeriesAnimations); +//![3] + +//![4] + QStringList categories; + categories << "Jan" << "Feb" << "Mar" << "Apr" << "May" << "Jun"; + QBarCategoryAxis *axis = new QBarCategoryAxis(); + axis->append(categories); + chart->createDefaultAxes(); + chart->setAxisX(axis, series); +//![4] + +//![5] + chart->legend()->setVisible(true); + chart->legend()->setAlignment(Qt::AlignBottom); +//![5] + +//![6] + QChartView *chartView = new QChartView(chart); + chartView->setRenderHint(QPainter::Antialiasing); +//![6] + +//![7] + QMainWindow window; + window.setCentralWidget(chartView); + window.resize(400, 300); + window.show(); +//![7] + + return a.exec(); +} +