summaryrefslogtreecommitdiffstats
path: root/examples/datavisualization/qmlbars/doc/src/qmlbars.qdoc
blob: 2b0a1c4b2916d5a524ce4b0887698a2834c0ce96 (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only

/*!
    \example qmlbars
    \meta tags {DataVisualization, Barsr3D, Multiple Series}
    \title Simple Bar Graph
    \ingroup qtdatavisualization_qmlexamples
    \brief Using Bars3D in a QML application.

    \e {Simple Bar Graph} shows how to make a simple 3D bar graph using Bars3D and QML.

    \image qmlbars-example.png

    The following sections describe how to switch series and display more than one series
    at a time. For more information about basic QML application functionality, see
    \l{Simple Scatter Graph}.

    \include examples-run.qdocinc

    \section1 Data

    The example data set is the monthly income and expenses of a fictional company over several years.
    The data is defined in a list model in \c Data.qml like this:

    \snippet qmlbars/qml/qmlbars/Data.qml 0
    \dots

    Each data item has three roles: timestamp, income, and expenses. The timestamp value is in
    format: \c{<four digit year>-<two digit month>}. Usually, you would map years and months to rows
    and columns of a bar chart, but you can only show either income or expenses as the value.

    Now, add the data to the Bars3D graph. Create two Bar3DSeries inside it, starting with a series
    for the income:

    \snippet qmlbars/qml/qmlbars/main.qml 3
    \dots

    The data is attached to the \c itemModel property of the ItemModelBarDataProxy inside the
    series. For \c{valueRole}, specify the \c income field, as it contains the value you
    want. Getting the years and months is a bit more complicated, since they are both found
    in the same field. To extract those values, specify the \c timestamp field for both
    \c rowRole and \c columnRole, and additionally specify a search pattern and a replace rule
    for those roles to extract the correct portion of the field contents for each role.
    The search pattern is a normal JavaScript regular expression and the replace rule specifies
    what the field content that matches the regular expression is replaced with.
    In this case, replace the entire field content with just the year or the month,
    which is the first captured substring for both rows and columns.
    For more information about the replace functionality with regular expression, see
    QString::replace(const QRegExp &rx, const QString &after) function documentation.

    The \c multiMatchBehavior property specifies what to do in case multiple item model items match
    the same row/column combination. In this case, add their values together.
    This property has no effect when showing values for each month, as there are no
    duplicate months in our item model, but it becomes relevant later when you want to show
    the yearly totals.

    Then, add another series for the expenses:

    \snippet qmlbars/qml/qmlbars/main.qml 4
    \dots

    The model contains expenses as negative values, but you want to show them as positive bars, so
    that they can be easily compared to income bars. Use the \c valueRolePattern to remove the minus
    sign to achieve this. No replacement string needs to be specified as the default replacement
    is an empty string.

    Use the \c visible property of the series to hide the second series for now.

    \section1 Custom Axis Labels

    \c Axes.qml redefines the category labels for the column axis because the data contains numbers
    for months, which would clutter the labels:

    \snippet qmlbars/qml/qmlbars/Axes.qml 0

    To make axis labels more readable at low camera angles, set automatic axis label rotation.

    \section1 Switching Series

    In \c main.qml, set up the graph and various UI elements. There are three interesting
    code blocks to highlight here. The first one shows how to change the visualized data between
    income, expenses, and both, by simply changing the visibility of the two series:

    \snippet qmlbars/qml/qmlbars/main.qml 0

    The axis label format and item selection label formats are tweaked to get the negative sign
    showing properly for expenses, which were actually resolved as positive values.

    The second interesting block is where the visualized data is changed by adjusting the proxy
    properties:

    \snippet qmlbars/qml/qmlbars/main.qml 1

    To show the yearly totals, combine the twelve months of each year into a single bar.
    This is achieved by specifying a \c columnRolePattern that matches all model items. That way,
    the data proxy will only have a single column. The cumulative \c multiMatchBehavior
    specified earlier for the proxy becomes relevant now, causing the values of all twelve months
    of each year to be added up into a single bar.

    To show just a subset of years, set \c autoRowCategories to false on the ItemModelBarDataProxy
    item and define the row categories explicitly. This way, only the items in the specified row
    categories are visualized.

    The third interesting block shows how to get the row and column index of an item if you know
    the row and column values by using ItemModelBarDataProxy methods \c rowCategoryIndex()
    and \c columnCategoryIndex():

    \snippet qmlbars/qml/qmlbars/main.qml 2
*/