##// 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:

r979:6c4321224538
r2443:5b27b7b1d72a RC2_1.2.1
Show More
examples-splinechart.qdoc
29 lines | 1.1 KiB | text/plain | TextLexer
/ doc / src / examples-splinechart.qdoc
/*!
\example examples/splinechart
\title SplineChart Example
\subtitle
The example shows how to create simple spline chart.
\image examples_splinechart.png
To create spline chart we need to put our data into QSplineSeries. QSplineSeries automatically calculates spline segment control points that are needed to properly draw the spline.
\snippet ../examples/splinechart/main.cpp 1
Now let's add some data points to the series.
\snippet ../examples/splinechart/main.cpp 2
The data series has been populated. To display it on a chart we create QChart object and add the data series to it. We also set the title and the values range on y axis, so that our chart is better visible.
\snippet ../examples/splinechart/main.cpp 3
Then we create a QChartView object with QChart as a parameter. This way we don't need to create QGraphicsView scene ourselves. We also set the Antialiasing on to have the rendered lines look nicer.
\snippet ../examples/splinechart/main.cpp 4
In the end we set the QChartView as the windows's central widget.
\snippet ../examples/splinechart/main.cpp 5
*/