##// END OF EJS Templates
Fix vanishing labels for first and last ticks....
Fix vanishing labels for first and last ticks. Extra space must be reserved by layout for the axes that have wide labels for first or last tick. Changed the logic how axis sizeHint is interpreted to make the previously irrelevant height or width (depending on orientation) of the sizeHint to indicate how far the widest label extends past the first/last tick, and adjust the grid size accordingly in layout. Reviewed-by: Mika Salmela

File last commit:

r1392:5379c05bf653
r2443:5b27b7b1d72a RC2_1.2.1
Show More
demos-qmlcustomizations.qdoc
26 lines | 1.1 KiB | text/plain | TextLexer
/ doc / src / demos-qmlcustomizations.qdoc
Tero Ahola
Documentation for Qml customizations demo
r1392 /*!
\example demos/qmlcustomizations
\title Qml Customizations
\subtitle
\image demos_qmlcustomizations.png
This application shows you how to customize different visual properties of a ChartView and series. It shows
a wheel of fortune by customizing a pie series.
First we create ChartView and a couple of series.
\snippet ../demos/qmlcustomizations/qml/qmlcustomizations/main.qml 1
The application data is generated in Component.onCompleted of the main rectangle:
\snippet ../demos/qmlcustomizations/qml/qmlcustomizations/main.qml 2
The following customizations are done repeatedly with a timer. To highlight one of the pie slices at time
we modify it's exploded property:
\snippet ../demos/qmlcustomizations/qml/qmlcustomizations/main.qml 3
Then an animation using a scatter series with one data point:
\snippet ../demos/qmlcustomizations/qml/qmlcustomizations/main.qml 4
When the wheel of fortune has stopped, we make the active slice blink by modifying it's colors.
\snippet ../demos/qmlcustomizations/qml/qmlcustomizations/main.qml 5
*/