main.cpp
64 lines
| 1.6 KiB
| text/x-c
|
CppLexer
Michal Klocek
|
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
|
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
|
r747 | ** | ||
Jani Honkonen
|
r830 | ** If you have questions regarding the use of this file, please use | ||
** contact form at http://qt.digia.com | ||||
Michal Klocek
|
r747 | ** $QT_END_LICENSE$ | ||
** | ||||
****************************************************************************/ | ||||
Michal Klocek
|
r12 | #include <QApplication> | ||
#include <QMainWindow> | ||||
Michal Klocek
|
r632 | #include <QChartView> | ||
#include <QLineSeries> | ||||
Michal Klocek
|
r12 | |||
Tero Ahola
|
r30 | QTCOMMERCIALCHART_USE_NAMESPACE | ||
Michal Klocek
|
r12 | |||
int main(int argc, char *argv[]) | ||||
{ | ||||
QApplication a(argc, argv); | ||||
Jani Honkonen
|
r883 | |||
Michal Klocek
|
r331 | //![1] | ||
Michal Klocek
|
r873 | QLineSeries* series = new QLineSeries(); | ||
Michal Klocek
|
r331 | //![1] | ||
Jani Honkonen
|
r883 | |||
Michal Klocek
|
r331 | //![2] | ||
Michal Klocek
|
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
|
r331 | //![2] | ||
Jani Honkonen
|
r883 | |||
Michal Klocek
|
r331 | //![3] | ||
Michal Klocek
|
r747 | QChart* chart = new QChart(); | ||
Michal Klocek
|
r873 | chart->addSeries(series); | ||
Michal Klocek
|
r747 | chart->setTitle("Simple line chart example"); | ||
Michal Klocek
|
r331 | //![3] | ||
Jani Honkonen
|
r883 | |||
Michal Klocek
|
r370 | //![4] | ||
Michal Klocek
|
r747 | QChartView* chartView = new QChartView(chart); | ||
chartView->setRenderHint(QPainter::Antialiasing); | ||||
//![4] | ||||
Jani Honkonen
|
r883 | |||
Michal Klocek
|
r747 | //![5] | ||
QMainWindow window; | ||||
Michal Klocek
|
r58 | window.setCentralWidget(chartView); | ||
Michal Klocek
|
r12 | window.resize(400, 300); | ||
window.show(); | ||||
Michal Klocek
|
r747 | //![5] | ||
Jani Honkonen
|
r883 | |||
Michal Klocek
|
r12 | return a.exec(); | ||
} | ||||