Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to include the QtCharts library in Qt Creator 4.2.0 (Community)

Tags:

c++

qt

qt5

qtcharts

enter image description here

I tried to include the QtCharts but i have an error when i include the library, this is the error:

Project ERROR: Unknown module(s) in QT: charts.

I have included the QT += charts in the *.pro file like this:

QT += charts
greaterThan(QT_MAJOR_VERSION, 4): QT += charts

SOURCES += \
    source.cpp

But it doesn't work. Please help me.

like image 717
Jacob Cerón Avatar asked Dec 23 '22 21:12

Jacob Cerón


1 Answers

In the installation process you must enable Qt Charts. This is not enabled by default.:

enter image description here

Click on Qt Charts:

enter image description here

like image 154
eyllanesc Avatar answered Dec 28 '22 08:12

eyllanesc