##// END OF EJS Templates
Krazy reported errors...
Krazy reported errors * adding Q_OBJECT macros * spelling corrections * missing consts in foreach loops * missing float convertions * adds better ownership handling

File last commit:

r971:29cedae3d4be
r974:de7be57d3935
Show More
examples-zoomlinechart.qdoc
22 lines | 788 B | text/plain | TextLexer
/ doc / src / examples-zoomlinechart.qdoc
/*!
\example examples/zoomlinechart
\title Zoom line example
\subtitle
The example shows how to create your own custom zooming effect with QRubberBand.
\image examples_zoomlinechart1.png
\image examples_zoomlinechart2.png
Let's first create a line series with some example data.
\snippet ../examples/zoomlinechart/main.cpp 1
Then we create a custom chart view by deriving from QChartView:
\snippet ../examples/zoomlinechart/chartview.h 1
We override mouse and key event handling
\snippet ../examples/zoomlinechart/chartview.h 2
Then we implement a custom logic for mouse and key events. For example pressing '+' key will zoom in and pressing
the '-' key will zoom out.
\snippet ../examples/zoomlinechart/chartview.cpp 1
*/