##// END OF EJS Templates
Adding metatype declarations in qml plugin for Qt5...
Adding metatype declarations in qml plugin for Qt5 Not sure why they are needed for Qt5. Definetly NOT needed for Qt4.

File last commit:

r1610:4694192f0264
r2257:b97c592cff78
Show More
chartview.cpp
57 lines | 1.8 KiB | text/x-c | CppLexer
Marek Rosa
License added to several files
r1365 /****************************************************************************
**
** 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$
**
****************************************************************************/
Tero Ahola
Fixed presenter and scatter examples and their documentation.
r1015 #include "chartview.h"
#include <QScatterSeries>
ChartView::ChartView(QWidget *parent) :
QChartView(new QChart(), parent)
{
//![1]
QScatterSeries *series0 = new QScatterSeries();
Tero Ahola
Named all series in example applications
r1226 series0->setName("scatter1");
Tero Ahola
Scatter customization to QML api
r1276 series0->setMarkerShape(QScatterSeries::MarkerShapeCircle);
series0->setMarkerSize(15.0);
Tero Ahola
Fixed presenter and scatter examples and their documentation.
r1015
QScatterSeries *series1 = new QScatterSeries();
Tero Ahola
Named all series in example applications
r1226 series1->setName("scatter2");
Tero Ahola
Scatter customization to QML api
r1276 series1->setMarkerShape(QScatterSeries::MarkerShapeCircle);
series1->setMarkerSize(20.0);
Tero Ahola
Fixed presenter and scatter examples and their documentation.
r1015 //![1]
//![2]
series0->append(0, 6);
series0->append(2, 4);
series0->append(3, 8);
series0->append(7, 4);
series0->append(10, 5);
*series1 << QPointF(1, 1) << QPointF(3, 3) << QPointF(7, 6) << QPointF(8, 3) << QPointF(10, 2);
//![2]
//![3]
setRenderHint(QPainter::Antialiasing);
chart()->addSeries(series0);
chart()->addSeries(series1);
chart()->setTitle("Simple scatterchart example");
Marek Rosa
Enable default axes in spline and scatter charts
r1610 chart()->createDefaultAxes();
Tero Ahola
Minor modifications to properties of abstract, area and bar series
r1462 chart()->setDropShadowEnabled(false);
Tero Ahola
Fixed presenter and scatter examples and their documentation.
r1015 //![3]
}