aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/doc/tutorials/datavisualize/add_chart.rst
blob: e42603333b6a1cd557259aea80ef0d4597d89b3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Chapter 5 - Add a chart view
=============================

A table is nice to present data, but a chart is even better. For this, you
need the QtCharts module that provides many types of plots and options to
graphically represent data.

The placeholder for a plot is a QChartView, and inside that Widget you can
place a QChart. As a first step, try including only this without any data to
plot.

Make the following changes to :code:`main_widget.py` from the previous chapter
to add a QChartView:

.. literalinclude:: datavisualize5/main_widget.py
   :linenos:
   :diff: datavisualize4/main_widget.py