##// END OF EJS Templates
Fix crash with boxplottertester brush...
Fix crash with boxplottertester brush The test sets the brush for the second set in the first series. It is checked that the set exists before setting the brush for it. Change-Id: Id677ab781953bf7cc789f316d92c137873d4f624 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>

File last commit:

r2610:66fa88d10640
r2635:d3155254bba4
Show More
examples-splinechart.qdoc
29 lines | 1.1 KiB | text/plain | TextLexer
/ doc / src / examples-splinechart.qdoc
Marek Rosa
Added missing example files
r435 /*!
Tero Ahola
Documentation front page
r979 \example examples/splinechart
\title SplineChart Example
\subtitle
Marek Rosa
Added missing example files
r435
Nico Vertriest
Doc: language review of Qt Charts doc...
r2610 The example shows how to create a simple spline chart.
Marek Rosa
Added missing example files
r435
Tero Ahola
Documentation front page
r979 \image examples_splinechart.png
Nico Vertriest
Doc: language review of Qt Charts doc...
r2610
To create spline charts we need to put our data into QSplineSeries. QSplineSeries automatically calculates spline segment control points that are needed to properly draw the spline.
Marek Rosa
Added missing example files
r435
Marek Rosa
Updated spline chart example documentation and added some more docs to barseries
r901 \snippet ../examples/splinechart/main.cpp 1
Marek Rosa
Added missing example files
r435
Marek Rosa
Docs updated
r908 Now let's add some data points to the series.
Marek Rosa
Added missing example files
r435
Nico Vertriest
Doc: language review of Qt Charts doc...
r2610 \snippet ../examples/splinechart/main.cpp 2
The data series has been populated. To display it on a chart we create a QChart object and add the data series to it. We also set the title and the values range on the y-axis, so that our chart's visibility is better.
Marek Rosa
Added missing example files
r435
Marek Rosa
Docs updated
r908 \snippet ../examples/splinechart/main.cpp 3
Nico Vertriest
Doc: language review of Qt Charts doc...
r2610
Then we create a QChartView object with QChart as a parameter. This way we don't need to create a QGraphicsView scene ourselves. We also set the Antialiasing on to have the rendered lines look nicer.
\snippet ../examples/splinechart/main.cpp 4
Finally, we set the QChartView as the windows's central widget.
\snippet ../examples/splinechart/main.cpp 5
Marek Rosa
Added missing example files
r435 */