##// END OF EJS Templates
Added colormap chart examples...
Added colormap chart examples Improved Zoom, added direction parameter. Signed-off-by: jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r2854:46147b040d06
r2901:d2a7a7849617
Show More
main.cpp
77 lines | 2.4 KiB | text/x-c | CppLexer
Miikka Heikkinen
Updated license...
r2854 /****************************************************************************
Jani Honkonen
Add/modify license headers
r830 **
Miikka Heikkinen
Updated license...
r2854 ** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
Jani Honkonen
Add/modify license headers
r830 **
Miikka Heikkinen
Updated license...
r2854 ** This file is part of the Qt Charts module of the Qt Toolkit.
Jani Honkonen
Add/modify license headers
r830 **
Miikka Heikkinen
Updated license...
r2854 ** $QT_BEGIN_LICENSE:GPL$
Titta Heikkala
Updated license headers...
r2845 ** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
Miikka Heikkinen
Updated license...
r2854 ** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
Jani Honkonen
Add/modify license headers
r830 **
Titta Heikkala
Updated license headers...
r2845 ** $QT_END_LICENSE$
**
Miikka Heikkinen
Updated license...
r2854 ****************************************************************************/
Jani Honkonen
Add/modify license headers
r830
Titta Heikkala
Fix include syntax...
r2714 #include <QtWidgets/QApplication>
#include <QtWidgets/QMainWindow>
#include <QtCharts/QChartView>
#include <QtCharts/QSplineSeries>
Marek Rosa
Replaced spline example with a simple one (linechart copy&paste)
r890
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_USE_NAMESPACE
Marek Rosa
Spline working somewhat
r401
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Marek Rosa
Replaced spline example with a simple one (linechart copy&paste)
r890
Marek Rosa
Updated spline chart example documentation and added some more docs to barseries
r901 //![1]
Jani Honkonen
more coding style fixes for examples...
r2102 QSplineSeries *series = new QSplineSeries();
Tero Ahola
Named all series in example applications
r1226 series->setName("spline");
Marek Rosa
Updated spline chart example documentation and added some more docs to barseries
r901 //![1]
//![2]
Marek Rosa
Replaced spline example with a simple one (linechart copy&paste)
r890 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);
Marek Rosa
Docs updated
r908 //![2]
Marek Rosa
Replaced spline example with a simple one (linechart copy&paste)
r890
Marek Rosa
Docs updated
r908 //![3]
Jani Honkonen
more coding style fixes for examples...
r2102 QChart *chart = new QChart();
Jani Honkonen
Fix/hide legend in some examples and demos
r1400 chart->legend()->hide();
Marek Rosa
Replaced spline example with a simple one (linechart copy&paste)
r890 chart->addSeries(series);
chart->setTitle("Simple spline chart example");
Marek Rosa
Enable default axes in spline and scatter charts
r1610 chart->createDefaultAxes();
Marek Rosa
Minor changes to spline and model examples
r894 chart->axisY()->setRange(0, 10);
Marek Rosa
Docs updated
r908 //![3]
Marek Rosa
Replaced spline example with a simple one (linechart copy&paste)
r890
Marek Rosa
Docs updated
r908 //![4]
Jani Honkonen
more coding style fixes for examples...
r2102 QChartView *chartView = new QChartView(chart);
Marek Rosa
Replaced spline example with a simple one (linechart copy&paste)
r890 chartView->setRenderHint(QPainter::Antialiasing);
Marek Rosa
Docs updated
r908 //![4]
Marek Rosa
Replaced spline example with a simple one (linechart copy&paste)
r890
Marek Rosa
Docs updated
r908 //![5]
Marek Rosa
Replaced spline example with a simple one (linechart copy&paste)
r890 QMainWindow window;
window.setCentralWidget(chartView);
window.resize(400, 300);
window.show();
Marek Rosa
Docs updated
r908 //![5]
Marek Rosa
Replaced spline example with a simple one (linechart copy&paste)
r890
Marek Rosa
Spline working somewhat
r401 return a.exec();
}