main.cpp
67 lines
| 1.7 KiB
| text/x-c
|
CppLexer
Michal Klocek
|
r747 | /**************************************************************************** | ||
** | ||||
Miikka Heikkinen
|
r2433 | ** Copyright (C) 2013 Digia Plc | ||
Michal Klocek
|
r747 | ** All rights reserved. | ||
** For any questions to Digia, please use contact form at http://qt.digia.com | ||||
** | ||||
Miikka Heikkinen
|
r2574 | ** This file is part of the Qt Enterprise Charts Add-on. | ||
Michal Klocek
|
r747 | ** | ||
Jani Honkonen
|
r830 | ** $QT_BEGIN_LICENSE$ | ||
Miikka Heikkinen
|
r2574 | ** Licensees holding valid Qt Enterprise licenses may use this file in | ||
** accordance with the Qt Enterprise License Agreement provided with the | ||||
Jani Honkonen
|
r830 | ** 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] | ||
Jani Honkonen
|
r2102 | QLineSeries *series = new QLineSeries(); | ||
Michal Klocek
|
r331 | //![1] | ||
Jani Honkonen
|
r883 | |||
Michal Klocek
|
r331 | //![2] | ||
Miikka Heikkinen
|
r2442 | 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] | ||
Jani Honkonen
|
r2102 | QChart *chart = new QChart(); | ||
Jani Honkonen
|
r1400 | chart->legend()->hide(); | ||
Michal Klocek
|
r873 | chart->addSeries(series); | ||
Michal Klocek
|
r1577 | chart->createDefaultAxes(); | ||
Michal Klocek
|
r747 | chart->setTitle("Simple line chart example"); | ||
Michal Klocek
|
r331 | //![3] | ||
Jani Honkonen
|
r883 | |||
Michal Klocek
|
r370 | //![4] | ||
Jani Honkonen
|
r2102 | QChartView *chartView = new QChartView(chart); | ||
Michal Klocek
|
r747 | chartView->setRenderHint(QPainter::Antialiasing); | ||
//![4] | ||||
Jani Honkonen
|
r883 | |||
Michal Klocek
|
r1577 | |||
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(); | ||
} | ||||