Qt Charts

Qt Charts module provides a set of easy to use chart components. It uses the Qt Graphics View Framework, therefore charts can be easily integrated to modern user interfaces. Qt Charts can be used as QWidgets, QGraphicsWidget, or QML types. Users can easily create impressive graphs by selecting one of the charts themes.

Getting Started

To import Qt Charts QML types, add the following import statement to your .qml file:

 import QtCharts 2.15

If you intend to use Qt Charts C++ classes in your application, use the following include and using directives:

 #include <QtCharts>

 using namespace QtCharts;

Note: Projects created with Qt Creator's Qt Quick Application wizard are based on the Qt Quick 2 template that uses QGuiApplication by default. All such QGuiApplication instances in the project must be replaced with QApplication as the module depends on Qt's Graphics View Framework for rendering.

To link against the Qt Charts module, add this line to your qmake project file:

 QT += charts

Licenses

Qt Charts is available under commercial licenses from The Qt Company. In addition, it is available under the GNU General Public License, version 3. See Qt Licensing for further details.

Articles and Guides

Examples

API Reference