summaryrefslogtreecommitdiffstats
path: root/src/charts/doc/src/examples-qmlchart.qdoc
blob: 412440d93382a8c3bc24ccbde7e02924e10adcb0 (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
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
** For any questions to The Qt Company, please use contact form at http://qt.io
**
** This file is part of the Qt Charts module.
**
** Licensees holding valid commercial license for Qt may use this file in
** accordance with the Qt License Agreement provided with the Software
** or, alternatively, in accordance with the terms contained in a written
** agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.io
**
****************************************************************************/

/*!
    \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.
*/