summaryrefslogtreecommitdiffstats
path: root/src/charts/doc/src/examples-qmlf1legends.qdoc
blob: da7a73b29dab937b420388c55c70e70e99b19042 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*!
    \example qmlf1legends
    \title Qml F1 Legends
    \ingroup qtcharts_examples

    \image examples_qmlf1legends.png

    \brief This application demonstrates how to use XmlListModel as a datasource for a Chart.

    Let's define an empty ChartView first:
    \snippet qmlf1legends/qml/qmlf1legends/main.qml 1

    Our XmlListModel uses hard-coded test data. In a real application the data source would be a
    timing system.
    \snippet qmlf1legends/qml/qmlf1legends/SpeedsXml.qml 1
    \dots
    \snippet qmlf1legends/qml/qmlf1legends/SpeedsXml.qml 2
    \snippet qmlf1legends/qml/qmlf1legends/main.qml 2

    The data is parsed with a timer. The line series representing each driver are created on the
    fly.
    \snippet qmlf1legends/qml/qmlf1legends/main.qml 3
*/