##// END OF EJS Templates
Fix zoomlinechart x-axis pan direction...
Fix zoomlinechart x-axis pan direction Change-Id: I92765fbb1ac11596dd3b76edc5e72daf374ad7f5 Reviewed-by: Mika Salmela <mika.salmela@digia.com>

File last commit:

r2574:599370d0561c
r2579:82300aabf82d
Show More
main.cpp
77 lines | 2.6 KiB | text/x-c | CppLexer
Jani Honkonen
add missing license statements
r1916 /****************************************************************************
**
Miikka Heikkinen
More copyright year changes
r2433 ** Copyright (C) 2013 Digia Plc
Jani Honkonen
add missing license statements
r1916 ** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** This file is part of the Qt Enterprise Charts Add-on.
Jani Honkonen
add missing license statements
r1916 **
** $QT_BEGIN_LICENSE$
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
Jani Honkonen
add missing license statements
r1916 ** 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$
**
****************************************************************************/
Marek Rosa
Removed QDonutGroup class. Added Donut Drill down example
r1697 #include <QApplication>
Jani Honkonen
Refactored donutbreakdown example
r1875 #include <QMainWindow>
Jani Honkonen
Add data source to donutbreakdown
r1952 #include <QStatusBar>
Jani Honkonen
Refactored donutbreakdown example
r1875 #include <QChartView>
#include "donutbreakdownchart.h"
QTCOMMERCIALCHART_USE_NAMESPACE
Marek Rosa
Removed QDonutGroup class. Added Donut Drill down example
r1697
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Jani Honkonen
Refactored donutbreakdown example
r1875
Jani Honkonen
Update donutbreakdown example docs
r1888 //![1]
Jani Honkonen
Update donutbreakdown data source (again)
r1954 // Graph is based on data of 'Total consumption of energy increased by 10 per cent in 2010'
// Statistics Finland, 13 December 2011
// http://www.stat.fi/til/ekul/2010/ekul_2010_2011-12-13_tie_001_en.html
Jani Honkonen
Refactored donutbreakdown example
r1875 QPieSeries *series1 = new QPieSeries();
Jani Honkonen
fine tuning donutbreakdownchart
r1905 series1->setName("Fossil fuels");
Jani Honkonen
Refactored donutbreakdown example
r1875 series1->append("Oil", 353295);
series1->append("Coal", 188500);
series1->append("Natural gas", 148680);
series1->append("Peat", 94545);
QPieSeries *series2 = new QPieSeries();
Jani Honkonen
fine tuning donutbreakdownchart
r1905 series2->setName("Renewables");
series2->append("Wood fuels", 319663);
Jani Honkonen
Refactored donutbreakdown example
r1875 series2->append("Hydro power", 45875);
series2->append("Wind power", 1060);
QPieSeries *series3 = new QPieSeries();
Jani Honkonen
fine tuning donutbreakdownchart
r1905 series3->setName("Others");
Jani Honkonen
Refactored donutbreakdown example
r1875 series3->append("Nuclear energy", 238789);
series3->append("Import energy", 37802);
Jani Honkonen
fine tuning donutbreakdownchart
r1905 series3->append("Other", 32441);
Jani Honkonen
Refactored donutbreakdown example
r1875 //![1]
//![2]
DonutBreakdownChart *donutBreakdown = new DonutBreakdownChart();
donutBreakdown->setAnimationOptions(QChart::AllAnimations);
donutBreakdown->setTitle("Total consumption of energy in Finland 2010");
Jani Honkonen
donutbreakdown example now has customized legendmarkers
r2233 donutBreakdown->legend()->setAlignment(Qt::AlignRight);
Jani Honkonen
Refactored donutbreakdown example
r1875 donutBreakdown->addBreakdownSeries(series1, Qt::red);
donutBreakdown->addBreakdownSeries(series2, Qt::darkGreen);
donutBreakdown->addBreakdownSeries(series3, Qt::darkBlue);
//![2]
//![3]
QMainWindow window;
Jani Honkonen
more coding style fixes for examples...
r2102 QChartView *chartView = new QChartView(donutBreakdown);
Jani Honkonen
Refactored donutbreakdown example
r1875 chartView->setRenderHint(QPainter::Antialiasing);
window.setCentralWidget(chartView);
Jani Honkonen
donutbreakdown example now has customized legendmarkers
r2233 window.resize(800, 500);
Jani Honkonen
Refactored donutbreakdown example
r1875 window.show();
//![3]
Jani Honkonen
coding style fixes for examples
r2098
Marek Rosa
Removed QDonutGroup class. Added Donut Drill down example
r1697 return a.exec();
}