summaryrefslogtreecommitdiffstats
path: root/examples/percentbarchart/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/percentbarchart/main.cpp')
-rw-r--r--examples/percentbarchart/main.cpp93
1 files changed, 0 insertions, 93 deletions
diff --git a/examples/percentbarchart/main.cpp b/examples/percentbarchart/main.cpp
deleted file mode 100644
index 649b29ba..00000000
--- a/examples/percentbarchart/main.cpp
+++ /dev/null
@@ -1,93 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2014 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 Enterprise Charts Add-on.
-**
-** $QT_BEGIN_LICENSE$
-** Licensees holding valid Qt Enterprise licenses may use this file in
-** accordance with the Qt Enterprise 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 <QApplication>
-#include <QMainWindow>
-#include <QChartView>
-#include <QPercentBarSeries>
-#include <QBarSet>
-#include <QLegend>
-#include <QBarCategoryAxis>
-
-QTCOMMERCIALCHART_USE_NAMESPACE
-
-int main(int argc, char *argv[])
-{
- QApplication a(argc, argv);
-
-//![1]
- 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");
-
- *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;
-//![1]
-
-//![2]
- QPercentBarSeries *series = new QPercentBarSeries();
- series->append(set0);
- series->append(set1);
- series->append(set2);
- series->append(set3);
- series->append(set4);
-//![2]
-
-//![3]
- QChart *chart = new QChart();
- chart->addSeries(series);
- chart->setTitle("Simple percentbarchart 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(420, 300);
- window.show();
-//![7]
-
- return a.exec();
-}
-