##// END OF EJS Templates
Fix mouse event handling with RubberBand...
Fix mouse event handling with RubberBand The mousePressEvent handles the event differently for rubber band only if the mouse press occurs on the plot area. This way pressing the mouse outside plot area will handle the event according to the pressed item (like legend marker). For the same reason the mouseRelease event handles the event differently for rubber band only if the rubber band is displayed. Task-number: QTRD-2260 Change-Id: Ibedcd2d13a7c2229352074a4df326cd73e9cf80f Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>

File last commit:

r2030:bd3809bea53e
r2609:cff0f629c1c4
Show More
demos-qmlchart.qdoc
118 lines | 3.2 KiB | text/plain | TextLexer
/ doc / src / demos-qmlchart.qdoc
/*!
\example demos/qmlchart
\title Qml charts demo
\subtitle
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.
\table
\row
\o \br
To create a pie, we use the PieSeries API together with a few PieSlices:
\br
\br
\snippet ../demos/qmlchart/qml/qmlchart/View1.qml 1
\o \inlineimage demos_qmlchart1.png
\endtable
\table
\row
\o \br
To create a chart with line series:
\br
\br
\snippet ../demos/qmlchart/qml/qmlchart/View2.qml 1
\o \inlineimage demos_qmlchart2.png
\endtable
\table
\row
\o \br
And spline series:
\br
\br
\snippet ../demos/qmlchart/qml/qmlchart/View3.qml 1
\o \inlineimage demos_qmlchart3.png
\endtable
\table
\row
\o \br
Then we create a chart that illustrates the NHL All-Star player selections by using three area series:
\br
\br
\snippet ../demos/qmlchart/qml/qmlchart/View4.qml 1
\o \inlineimage demos_qmlchart4.png
\endtable
\table
\row
\o \br
Then couple of scatter series:
\br
\br
\snippet ../demos/qmlchart/qml/qmlchart/View5.qml 1
\o \inlineimage demos_qmlchart5.png
\endtable
And a few different bar series:
\table
\row
\o \br
\br
\br
\snippet ../demos/qmlchart/qml/qmlchart/View6.qml 1
\o \inlineimage demos_qmlchart6.png
\endtable
\table
\row
\o \br
\br
\br
\snippet ../demos/qmlchart/qml/qmlchart/View7.qml 1
\o \inlineimage demos_qmlchart7.png
\endtable
\table
\row
\o \br
\br
\br
\snippet ../demos/qmlchart/qml/qmlchart/View8.qml 1
\o \inlineimage demos_qmlchart8.png
\endtable
\table
\row
\o \br
\br
\br
\snippet ../demos/qmlchart/qml/qmlchart/View9.qml 1
\o \inlineimage demos_qmlchart9.png
\endtable
\table
\row
\o \br
\br
\br
\snippet ../demos/qmlchart/qml/qmlchart/View10.qml 1
\o \inlineimage demos_qmlchart10.png
\endtable
\table
\row
\o \br
\br
\br
\snippet ../demos/qmlchart/qml/qmlchart/View11.qml 1
\o \inlineimage demos_qmlchart11.png
\endtable
\table
\row
\o \br
And finally an example how to create a donut chart with two pie series:
\br
\br
\snippet ../demos/qmlchart/qml/qmlchart/View12.qml 1
\o \inlineimage demos_qmlchart12.png
\endtable
*/