##// END OF EJS Templates
Remove scaledomain ect. warnings from pie. Not going to be implemented (for now at least).
Remove scaledomain ect. warnings from pie. Not going to be implemented (for now at least).

File last commit:

r902:a116b3f97280
r1191:6223c1214e9d
Show More
main.cpp
64 lines | 1.6 KiB | text/x-c | CppLexer
Michal Klocek
Uninfy examples , updated public API changes
r747 /****************************************************************************
**
** 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.
**
Jani Honkonen
Add/modify license headers
r830 ** $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.
Michal Klocek
Uninfy examples , updated public API changes
r747 **
Jani Honkonen
Add/modify license headers
r830 ** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
Michal Klocek
Uninfy examples , updated public API changes
r747 ** $QT_END_LICENSE$
**
****************************************************************************/
Michal Klocek
adds missing files form previous commit
r12 #include <QApplication>
#include <QMainWindow>
Michal Klocek
Change headers to qt ones in some examples
r632 #include <QChartView>
#include <QLineSeries>
Michal Klocek
adds missing files form previous commit
r12
Tero Ahola
Renamed to QtCommercialChart
r30 QTCOMMERCIALCHART_USE_NAMESPACE
Michal Klocek
adds missing files form previous commit
r12
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
Refactor documentation...
r331 //![1]
Michal Klocek
Creates only one line in linechart example
r873 QLineSeries* series = new QLineSeries();
Michal Klocek
Refactor documentation...
r331 //![1]
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
Refactor documentation...
r331 //![2]
Michal Klocek
Creates only one line in linechart example
r873 series->append(0, 6);
series->append(2, 4);
series->append(3, 8);
series->append(7, 4);
series->append(10, 5);
*series << QPointF(11, 1) << QPointF(13, 3) << QPointF(17, 6) << QPointF(18, 3) << QPointF(20, 2);
Michal Klocek
Refactor documentation...
r331 //![2]
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
Refactor documentation...
r331 //![3]
Michal Klocek
Uninfy examples , updated public API changes
r747 QChart* chart = new QChart();
Michal Klocek
Creates only one line in linechart example
r873 chart->addSeries(series);
Michal Klocek
Uninfy examples , updated public API changes
r747 chart->setTitle("Simple line chart example");
Michal Klocek
Refactor documentation...
r331 //![3]
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
Add linechart example documentation
r370 //![4]
Michal Klocek
Uninfy examples , updated public API changes
r747 QChartView* chartView = new QChartView(chart);
chartView->setRenderHint(QPainter::Antialiasing);
//![4]
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
Uninfy examples , updated public API changes
r747 //![5]
QMainWindow window;
Michal Klocek
Adds rubberband for zooming...
r58 window.setCentralWidget(chartView);
Michal Klocek
adds missing files form previous commit
r12 window.resize(400, 300);
window.show();
Michal Klocek
Uninfy examples , updated public API changes
r747 //![5]
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
adds missing files form previous commit
r12 return a.exec();
}