summaryrefslogtreecommitdiffstats
path: root/src/charts/doc/src/examples-qmlchart.qdoc
blob: 641d95e0869dffe24cb18b217c5b1f3ab42bda06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Charts module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL$
** 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
** 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.
**
** $QT_END_LICENSE$
**
****************************************************************************/

/*!
    \example qmlchart
    \title Qml Charts Example
    \ingroup qtcharts_examples

    \brief This basic demonstration shows how to use the different chart types by using qml.

    Creating each chart type begins with the creation of a ChartView.

    To create a pie, we use the PieSeries API together with a few PieSlices:

    \image examples_qmlchart1.png
    \snippet qmlchart/qml/qmlchart/View1.qml 1

    To create a chart with a line series:

    \image examples_qmlchart2.png
    \snippet qmlchart/qml/qmlchart/View2.qml 1

    And spline series:

    \image examples_qmlchart3.png
    \snippet qmlchart/qml/qmlchart/View3.qml 1

    Then we create a chart that illustrates the NHL All-Star player selections by using
    three area series:

    \image examples_qmlchart4.png
    \snippet qmlchart/qml/qmlchart/View4.qml 1
    \dots

    Then a couple of scatter series:

    \image examples_qmlchart5.png
    \snippet qmlchart/qml/qmlchart/View5.qml 1
    \dots

    And a few different bar series:

    \image examples_qmlchart6.png
    \snippet qmlchart/qml/qmlchart/View6.qml 1

    \image examples_qmlchart7.png
    \snippet qmlchart/qml/qmlchart/View7.qml 1

    \image examples_qmlchart8.png
    \snippet qmlchart/qml/qmlchart/View8.qml 1

    \image examples_qmlchart9.png
    \snippet qmlchart/qml/qmlchart/View9.qml 1

    \image examples_qmlchart10.png
    \snippet qmlchart/qml/qmlchart/View10.qml 1

    \image examples_qmlchart11.png
    \snippet qmlchart/qml/qmlchart/View11.qml 1

    And finally an example demonstrating how to create a donut chart with two pie series:

    \image examples_qmlchart12.png
    \snippet qmlchart/qml/qmlchart/View12.qml 1

    Additionally, antialiasing is set with the qml property in Qt Quick 2.
*/