summaryrefslogtreecommitdiffstats
path: root/src/charts/doc/src/examples-qmlchart.qdoc
blob: c99e9af62861bd823c5aa096d13476e978aa6484 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only

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

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

    \include examples-run.qdocinc

    \section1 Creating Charts 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.
*/