SplineChart Example▲
Running the Example▲
To run the example from Qt Creator, open the Welcome mode and select the example from Examples. For more information, visit Building and Running an Example.
Creating Spline Charts▲
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.
QSplineSeries *
series =
new
QSplineSeries();
series-&
gt;setName("spline"
);
Now let's add some data points to the series.
series-&
gt;append(0
, 6
);
series-&
gt;append(2
, 4
);
series-&
gt;append(3
, 8
);
series-&
gt;append(7
, 4
);
series-&
gt;append(10
, 5
);
*
series &
lt;&
lt; QPointF(11
, 1
) &
lt;&
lt; QPointF(13
, 3
) &
lt;&
lt; QPointF(17
, 6
) &
lt;&
lt; QPointF(18
, 3
) &
lt;&
lt; QPointF(20
, 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.
QChart *
chart =
new
QChart();
chart-&
gt;legend()-&
gt;hide();
chart-&
gt;addSeries(series);
chart-&
gt;setTitle("Simple spline chart example"
);
chart-&
gt;createDefaultAxes();
chart-&
gt;axes(Qt::
Vertical).first()-&
gt;setRange(0
, 10
);
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.
QChartView *
chartView =
new
QChartView(chart);
chartView-&
gt;setRenderHint(QPainter::
Antialiasing);
Finally, we set the QChartView as the windows's central widget.
QMainWindow window;
window.setCentralWidget(chartView);
window.resize(400
, 300
);
window.show();