##// END OF EJS Templates
reintroducing clicked and hovered signals to barset. Makes some things easier on QML api
reintroducing clicked and hovered signals to barset. Makes some things easier on QML api

File last commit:

r1380:ae04ff07a29b
r1490:b134c8a9174e
Show More
demos-qmlchart.qdoc
27 lines | 1.0 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
To create a chart with line and spline series:
\snippet ../demos/qmlchart/qml/qmlchart/View2.qml 1
\image demos_qmlchart2.png
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:
\snippet ../demos/qmlchart/qml/qmlchart/View3.qml 1
\image demos_qmlchart3.png
Then couple of scatter series:
\snippet ../demos/qmlchart/qml/qmlchart/View4.qml 1
\image demos_qmlchart4.png
And finally a bar series:
\snippet ../demos/qmlchart/qml/qmlchart/View5.qml 1
\image demos_qmlchart5.png
Jani Honkonen
Added qmlchart to demo docs
r1010 */