##// END OF EJS Templates
Font is now correctly set when new tick label is created
Font is now correctly set when new tick label is created

File last commit:

r2201:d5c9b0344dfc
r2221:8060b5a01554
Show More
main.cpp
88 lines | 2.5 KiB | text/x-c | CppLexer
sauimone
population pyramid example. Added grouping option to barseries to give some control over layout
r1794 /****************************************************************************
**
** 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 <QApplication>
#include <QMainWindow>
#include <QChartView>
#include <QBarSeries>
#include <QBarSet>
#include <QLegend>
Marek Rosa
QBarCategoriesAxis renamed to QBarCategoryAxis
r1809 #include <QBarCategoryAxis>
sauimone
Some todo:s in barseries done. Updated temperaturerecords example to use stacked bar series
r1899 #include <QStackedBarSeries>
sauimone
population pyramid example. Added grouping option to barseries to give some control over layout
r1794
QTCOMMERCIALCHART_USE_NAMESPACE
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
//![1]
sauimone
Replacing population pyramid example with temperature records example. This illustrates drawing of negative bars better.
r1871 QBarSet *low = new QBarSet("Min");
QBarSet *high = new QBarSet("Max");
sauimone
population pyramid example. Added grouping option to barseries to give some control over layout
r1794
sauimone
removed mention to Finland and modified temperatures in example to avoid possible copyright issues. Using fictional data now.
r1953 *low << -52 << -50 << -45.3 << -37.0 << -25.6 << -8.0 << -6.0 << -11.8 << -19.7 << -32.8 << -43.0 << -48.0;
*high << 11.9 << 12.8 << 18.5 << 26.5 << 32.0 << 34.8 << 38.2 << 34.8 << 29.8 << 20.4 << 15.1 << 11.8;
sauimone
population pyramid example. Added grouping option to barseries to give some control over layout
r1794 //![1]
//![2]
sauimone
Some todo:s in barseries done. Updated temperaturerecords example to use stacked bar series
r1899 QStackedBarSeries *series = new QStackedBarSeries();
sauimone
Replacing population pyramid example with temperature records example. This illustrates drawing of negative bars better.
r1871 series->append(low);
series->append(high);
sauimone
population pyramid example. Added grouping option to barseries to give some control over layout
r1794 //![2]
//![3]
Jani Honkonen
more coding style fixes for examples...
r2102 QChart *chart = new QChart();
sauimone
population pyramid example. Added grouping option to barseries to give some control over layout
r1794 chart->addSeries(series);
sauimone
removed mention to Finland and modified temperatures in example to avoid possible copyright issues. Using fictional data now.
r1953 chart->setTitle("Temperature records in celcius");
sauimone
population pyramid example. Added grouping option to barseries to give some control over layout
r1794 chart->setAnimationOptions(QChart::SeriesAnimations);
//![3]
//![4]
QStringList categories;
sauimone
Replacing population pyramid example with temperature records example. This illustrates drawing of negative bars better.
r1871 categories << "Jan" << "Feb" << "Mar" << "Apr" << "May" << "Jun" << "Jul" << "Aug" << "Sep" << "Oct" << "Nov" << "Dec";
sauimone
population pyramid example. Added grouping option to barseries to give some control over layout
r1794
Jani Honkonen
more coding style fixes for examples...
r2102 QBarCategoryAxis *axis = new QBarCategoryAxis();
sauimone
population pyramid example. Added grouping option to barseries to give some control over layout
r1794 axis->append(categories);
Marek Rosa
Added axis titles to datetimeaxis and temperaturerecords examples
r2201 axis->setTitle("Month");
sauimone
population pyramid documentation. updated example.
r1866 chart->createDefaultAxes();
Jani Honkonen
coding style fixes for examples
r2098 chart->setAxisX(axis, series);
chart->axisY(series)->setRange(-52, 52);
Marek Rosa
Added axis titles to datetimeaxis and temperaturerecords examples
r2201 chart->axisY(series)->setTitle(QString::fromUtf8("Temperature [\u00B0C]"));
sauimone
population pyramid example. Added grouping option to barseries to give some control over layout
r1794 //![4]
//![5]
chart->legend()->setVisible(true);
chart->legend()->setAlignment(Qt::AlignBottom);
//![5]
//![6]
Jani Honkonen
more coding style fixes for examples...
r2102 QChartView *chartView = new QChartView(chart);
sauimone
population pyramid example. Added grouping option to barseries to give some control over layout
r1794 chartView->setRenderHint(QPainter::Antialiasing);
//![6]
//![7]
QMainWindow window;
window.setCentralWidget(chartView);
sauimone
Replacing population pyramid example with temperature records example. This illustrates drawing of negative bars better.
r1871 window.resize(400, 300);
sauimone
population pyramid example. Added grouping option to barseries to give some control over layout
r1794 window.show();
//![7]
return a.exec();
}