##// END OF EJS Templates
Fix value axis documentation...
Fix value axis documentation QML documentation does not show obsolete properties correctly. Removed the obsolete key and added a deprecated comment. Related typos fixed. Change-Id: I86c862e4f587541df0a08363834ad13efc14e1b4 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>

File last commit:

r2610:66fa88d10640
r2636:25b732239a6d
Show More
demos-qmlf1legends.qdoc
20 lines | 787 B | text/plain | TextLexer
/ doc / src / demos-qmlf1legends.qdoc
/*!
\example demos/qmlf1legends
\title Qml F1 Legends
\subtitle
\image demos_qmlf1legends.png
This application demonstrates how to use XmlListModel as a datasource for a Chart.
Let's define an empty ChartView first:
\snippet ../demos/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 ../demos/qmlf1legends/qml/qmlf1legends/SpeedsXml.qml 1
\snippet ../demos/qmlf1legends/qml/qmlf1legends/SpeedsXml.qml 2
\snippet ../demos/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 ../demos/qmlf1legends/qml/qmlf1legends/main.qml 3
*/