examples-splinechart.qdoc
29 lines
| 1.1 KiB
| text/plain
|
TextLexer
Marek Rosa
|
r435 | /*! | ||
Tero Ahola
|
r500 | \example examples/splinechart | ||
Marek Rosa
|
r435 | \title SplineChart Example | ||
\subtitle | ||||
The example shows how to create simple spline chart. | ||||
\image splinechart_example | ||||
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. | ||||
Marek Rosa
|
r901 | \snippet ../examples/splinechart/main.cpp 1 | ||
Marek Rosa
|
r435 | |||
Marek Rosa
|
r908 | Now let's add some data points to the series. | ||
Marek Rosa
|
r435 | |||
Marek Rosa
|
r908 | \snippet ../examples/splinechart/main.cpp 2 | ||
Marek Rosa
|
r435 | |||
Marek Rosa
|
r901 | 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. | ||
Marek Rosa
|
r435 | |||
Marek Rosa
|
r908 | \snippet ../examples/splinechart/main.cpp 3 | ||
Marek Rosa
|
r435 | |||
Marek Rosa
|
r902 | 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. | ||
Marek Rosa
|
r435 | |||
Marek Rosa
|
r908 | \snippet ../examples/splinechart/main.cpp 4 | ||
Marek Rosa
|
r435 | |||
Marek Rosa
|
r901 | In the end we set the QChartView as the windows's central widget. | ||
Marek Rosa
|
r435 | |||
Marek Rosa
|
r908 | \snippet ../examples/splinechart/main.cpp 5 | ||
Marek Rosa
|
r435 | */ | ||