##// END OF EJS Templates
Add Polar chart support...
Add Polar chart support This commit also heavily refactors things as polar chart needs separate implementation of various classes that previously only needed one, such as ChartAxis and ChartLayout. Task-number: QTRD-1757 Change-Id: I3d3db23920314987ceef3ae92879960b833b7136 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>

File last commit:

r1391:de088eac0b44
r2483:f494279b6366
Show More
demos-qmlf1legends.qdoc
20 lines | 782 B | text/plain | TextLexer
/ doc / src / demos-qmlf1legends.qdoc
/*!
\example demos/qmlf1legends
\title Qml F1 Legends
\subtitle
\image demos_qmlf1legends.png
This application demonstrates using 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
*/