##// END OF EJS Templates
barcategoriesaxis documentation. Doc stub to intervalaxis
barcategoriesaxis documentation. Doc stub to intervalaxis

File last commit:

r1520:a557edf16956
r1624:aa412a1538c7
Show More
demos-qmlchart.qdoc
31 lines | 1.1 KiB | text/plain | TextLexer
/ doc / src / demos-qmlchart.qdoc
Jani Honkonen
Added qmlchart to demo docs
r1010 /*!
\example demos/qmlchart
\title Qml charts demo
\subtitle
Tero Ahola
Documentation: QML demos, bar screens, legend detach screen
r1380 This is a basic demonstration how to use the different chart types by using qml. Creating each chart type begins
with creation of a ChartView. For example to create a pie, we use the PieSeries API together with a few PieSlices:
\snippet ../demos/qmlchart/qml/qmlchart/View1.qml 1
\image demos_qmlchart1.png
Tero Ahola
Fixed documentation of qmlchart demo
r1520 To create a chart with line series:
Tero Ahola
Documentation: QML demos, bar screens, legend detach screen
r1380 \snippet ../demos/qmlchart/qml/qmlchart/View2.qml 1
\image demos_qmlchart2.png
Tero Ahola
Fixed documentation of qmlchart demo
r1520 And spline series:
Tero Ahola
Documentation: QML demos, bar screens, legend detach screen
r1380 \snippet ../demos/qmlchart/qml/qmlchart/View3.qml 1
\image demos_qmlchart3.png
Tero Ahola
Fixed documentation of qmlchart demo
r1520 Then we create a chart that illustrates the success of Russian, Swedish and Finnish ice-hockey players in the
NHL All-Star player selections by using three area series:
Tero Ahola
Documentation: QML demos, bar screens, legend detach screen
r1380 \snippet ../demos/qmlchart/qml/qmlchart/View4.qml 1
\image demos_qmlchart4.png
Tero Ahola
Fixed documentation of qmlchart demo
r1520 Then couple of scatter series:
Tero Ahola
Documentation: QML demos, bar screens, legend detach screen
r1380 \snippet ../demos/qmlchart/qml/qmlchart/View5.qml 1
\image demos_qmlchart5.png
Tero Ahola
Fixed documentation of qmlchart demo
r1520
And finally a bar series:
\snippet ../demos/qmlchart/qml/qmlchart/View6.qml 1
\image demos_qmlchart6.png
Jani Honkonen
Added qmlchart to demo docs
r1010 */