Skip to content

yesterdai123/qtcharts

This branch is 644 commits behind qt/qtcharts:dev.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e66ff46 · May 14, 2020
Apr 22, 2020
Apr 6, 2020
Jan 13, 2016
May 5, 2020
Apr 20, 2020
Jan 13, 2016
Nov 11, 2014
Feb 28, 2018
Apr 7, 2020
Oct 3, 2013
Jan 13, 2016
Aug 23, 2016
Apr 6, 2020
Oct 15, 2019
Feb 7, 2018

Repository files navigation

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

About

QtCharts module

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 86.4%
  • QML 12.3%
  • QMake 0.8%
  • CSS 0.3%
  • C 0.2%
  • Prolog 0.0%