QtCharts module
Go to file
Kari Oikarinen 27d2c7035b Ignore QML cache files
Annoying to see the cache files after running the tests.

Change-Id: I4211547f5b1e88aeb09067957e10f6e0a69dbd00
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
2018-02-28 12:55:44 +00:00
dist Add changes file for Qt 5.10.1 2018-02-05 10:15:53 +00:00
examples Polish the audio example 2018-02-08 08:27:54 +00:00
plugins Updated license 2016-01-13 12:28:51 +00:00
src Fix few cases of dividing by zero 2018-02-28 09:09:27 +00:00
tests Don't use deprecated QTest::qWaitForWindowShown() 2018-02-28 12:55:31 +00:00
tools/demoLauncher Updated license 2016-01-13 12:28:51 +00:00
.gitattributes Moved manual tests to separate directory. 2014-11-11 12:44:27 +02:00
.gitignore Ignore QML cache files 2018-02-28 12:55:44 +00:00
.qmake.conf Bump version 2017-12-20 12:07:08 +01:00
.tag Update the git-archive export options 2013-10-03 14:13:28 +03:00
LICENSE.GPL3 Updated license 2016-01-13 12:28:51 +00:00
README Merge remote-tracking branch 'origin/5.6' into 5.7 2016-08-23 09:13:20 +02:00
qtcharts.pro Add dependency on features.graphicsview 2017-03-13 11:39:26 +00:00
sync.profile Add private declarative headers 2018-02-07 08:05:12 +00:00

README

---------------
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.

System Requirements
===================

- Qt 5.4 or newer
- For QML applications QtQuick 2 is required
- Manipulating Qt Charts graphs with QML Designer requires Qt Creator 3.3 or newer

Building
========

Configure the project with qmake:
    qmake

After running qmake, build the project with make:
    (Linux) make
    (Windows with MinGw) mingw32-make
    (Windows with Visual Studio) nmake
    (OS X) make

The above generates the default makefiles for your configuration, which is typically
the release build if you are using precompiled binary Qt distribution. To build both
debug and release, or one specifically, use one of the following qmake lines instead.

For debug builds:
    qmake CONFIG+=debug
    make
  or
    qmake CONFIG+=debug_and_release
    make debug

For release builds:
    qmake CONFIG+=release
    make
  or
    qmake CONFIG+=debug_and_release
    make release

For both builds (Windows/OS X only):
    qmake CONFIG+="debug_and_release build_all"
    make

After building, install the module to your Qt directory:
    make install

If you want to uninstall the module:
    make uninstall

Building as a statically linked library
=======================================

The same as above applies, you will just have to add static to the CONFIG:
    qmake CONFIG+=static

Documentation
=============

The documentation can be generated with:
    make docs

The documentation is generated into the doc folder under the build folder.
Both Qt Assistant (qtcharts.qch) and in HTML format (qtcharts subfolder)
documentation is generated.

Please refer to the generated documentation for more information:
    doc/qtcharts/qtcharts-index.html

Known issues
============

- Zooming too far or too close may eventually freeze the zooming and scrolling.