• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

dist/H29-Oct-2020-927641

plugins/H29-Oct-2020-202112

src/H29-Oct-2020-78,44245,479

.qmake.confH A D29-Oct-2020104 63

.tagH A D29-Oct-202041 21

LICENSE.GPL3H A D29-Oct-202034.3 KiB675553

READMEH A D29-Oct-20201.9 KiB7958

qtcharts.proH A D29-Oct-2020210 128

sync.profileH A D29-Oct-2020250 98

README

1---------------
2Qt Charts
3---------------
4
5Qt Charts module provides a set of easy to use chart components. It uses
6the Qt Graphics View Framework, therefore charts can be easily integrated
7to modern user interfaces.
8
9System Requirements
10===================
11
12- Qt 5.4 or newer
13- For QML applications QtQuick 2 is required
14- Manipulating Qt Charts graphs with QML Designer requires Qt Creator 3.3 or newer
15
16Building
17========
18
19Configure the project with qmake:
20    qmake
21
22After running qmake, build the project with make:
23    (Linux) make
24    (Windows with MinGw) mingw32-make
25    (Windows with Visual Studio) nmake
26    (OS X) make
27
28The above generates the default makefiles for your configuration, which is typically
29the release build if you are using precompiled binary Qt distribution. To build both
30debug and release, or one specifically, use one of the following qmake lines instead.
31
32For debug builds:
33    qmake CONFIG+=debug
34    make
35  or
36    qmake CONFIG+=debug_and_release
37    make debug
38
39For release builds:
40    qmake CONFIG+=release
41    make
42  or
43    qmake CONFIG+=debug_and_release
44    make release
45
46For both builds (Windows/OS X only):
47    qmake CONFIG+="debug_and_release build_all"
48    make
49
50After building, install the module to your Qt directory:
51    make install
52
53If you want to uninstall the module:
54    make uninstall
55
56Building as a statically linked library
57=======================================
58
59The same as above applies, you will just have to add static to the CONFIG:
60    qmake CONFIG+=static
61
62Documentation
63=============
64
65The documentation can be generated with:
66    make docs
67
68The documentation is generated into the doc folder under the build folder.
69Both Qt Assistant (qtcharts.qch) and in HTML format (qtcharts subfolder)
70documentation is generated.
71
72Please refer to the generated documentation for more information:
73    doc/qtcharts/qtcharts-index.html
74
75Known issues
76============
77
78- Zooming too far or too close may eventually freeze the zooming and scrolling.
79