QtCharts module
Go to file
Miikka Heikkinen c6d72bb6eb Fix resize handling in Callout example
Callouts are now positioned correctly when the chart is resized.

Task-number: QTBUG-54492
Change-Id: I5660eb48e58348cc2d649b48965c342488294ae4
Reviewed-by: Mika Salmela <mika.salmela@qt.io>
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
2016-08-16 06:47:44 +00:00
dist Bump version to 2.1.1 2016-04-05 08:40:15 +00:00
examples Fix resize handling in Callout example 2016-08-16 06:47:44 +00:00
plugins Updated license headers 2015-10-20 08:45:41 +00:00
src Fix logarithmic axis for area chart 2016-08-15 11:35:14 +00:00
tests Fix QT_BUILD_INTERNAL usage in autotests 2016-08-11 06:57:41 +00:00
tools/demoLauncher Updated tools folder 2015-10-20 09:21:51 +00:00
.gitattributes Moved manual tests to separate directory. 2014-11-11 12:44:27 +02:00
.gitignore Fixed bug with plugin folder in .gitignore 2012-08-28 14:01:20 +03:00
.qmake.conf do not enable example installs explicitly any more 2016-05-24 15:54:51 +00:00
.tag Update the git-archive export options 2013-10-03 14:13:28 +03:00
README Bump version to 2.1.1 2016-04-05 08:40:15 +00:00
qtcharts.pro Added requirement for QtWidgets 2015-10-20 09:35:18 +00:00
sync.profile Fix sync.profile dependency versioning 2016-01-25 14:12:00 +00:00

README

---------------
Qt Charts 2.1.1
---------------

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/index.html

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

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