##// END OF EJS Templates
monir. typo
Michal Klocek -
r1678:a3b35ca95c5c
parent child
Show More
@@ -1,87 +1,87
1 --------------------------------
1 --------------------------------
2 Commercial Charts Add-on 1.0.0
2 Commercial Charts Add-on 1.0.0
3 --------------------------------
3 --------------------------------
4
4
5 Whats in Qt Commercial Charts
5 What's in Qt Commercial Charts
6 =============================
6 =============================
7
7
8 Directory structure:
8 Directory structure:
9
9
10 src/
10 src/
11 Source code of the Qt Commercial Charts
11 Source code of the Qt Commercial Charts
12 plugins/
12 plugins/
13 QML bindings plugin and QtCreator plugin
13 QML bindings plugin and QtCreator plugin
14 examples/
14 examples/
15 Some examples of using Qt Commercial Charts
15 Some examples of using Qt Commercial Charts
16 demos/
16 demos/
17 More versatile example applications showing how to customize charts,
17 More versatile example applications showing how to customize charts,
18 combine several chart types and implement interaction in charts
18 combine several chart types and implement interaction in charts
19 doc/
19 doc/
20 Documentation
20 Documentation
21 licenses/
21 licenses/
22 Licensing infromation
22 Licensing infromation
23
23
24 Building
24 Building
25 ========
25 ========
26
26
27 Configure project with qmake and build poject with make:
27 Configure project with qmake and build project with make:
28 (Linux) make
28 (Linux) make
29 (Windows with MinGw) mingw32-make
29 (Windows with MinGw) mingw32-make
30 (Visual Studio) nmake
30 (Visual Studio) nmake
31 (OSX) make
31 (OSX) make
32
32
33 For debug builds:
33 For debug builds:
34 qmake CONFIG+=debug ; make
34 qmake CONFIG+=debug ; make
35 or
35 or
36 qmake CONFIG+=debug_and_relese; make debug
36 qmake CONFIG+=debug_and_release; make debug
37
37
38 For release builds:
38 For release builds:
39 qmake CONFIG+=release ; make
39 qmake CONFIG+=release ; make
40 or
40 or
41 qmake CONFIG+=debug_and_relese; make release
41 qmake CONFIG+=debug_and_release; make release
42
42
43 For both builds
43 For both builds
44 qmake CONFIG+=debug_and_relese; make all
44 qmake CONFIG+=debug_and_release; make all
45
45
46
46
47 If you want to install the libraries to your Qt library directory use:
47 If you want to install the libraries to your Qt library directory use:
48 make install
48 make install
49
49
50 If you want to uninstall the libraries
50 If you want to uninstall the libraries
51 make uninstall
51 make uninstall
52
52
53 Building as a statically linked library
53 Building as a statically linked library
54 =======================================
54 =======================================
55
55
56 The same as above applies you will just have to add staticlib to the CONFIG:
56 The same as above applies you will just have to add staticlib to the CONFIG:
57 qmake CONFIG+=staticlib
57 qmake CONFIG+=staticlib
58
58
59 Documentation
59 Documentation
60 =============
60 =============
61 Documentation can be found from doc/html directory.
61 Documentation can be found from doc/html directory.
62
62
63 The documentation can also be generated with "make docs".
63 The documentation can also be generated with "make docs".
64
64
65 KNOWN ISSUES
65 KNOWN ISSUES
66 ============
66 ============
67 * Logartmic, polar axis are not supported at the moment.
67 * Logartmic, polar axis are not supported at the moment.
68 * Automatic scaling of the axes is only done when you add a series on a chart
68 * Automatic scaling of the axes is only done when you add a series on a chart
69 * API for Animations state (signaling started, finished) and setting duration
69 * API for Animations state (signaling started, finished) and setting duration
70 etc. is missing
70 etc. is missing
71 * Layout in QBarCategoriesAxis can cause categories to overlap
71 * Layout in QBarCategoriesAxis can cause categories to overlap
72 * Only one Y and X axis can be visible at the same time
72 * Only one Y and X axis can be visible at the same time
73 * Unit label for axes is not implemented
73 * Unit label for axes is not implemented
74 * In some cases (e.g. long texts) can cause some issues with layout
74 * In some cases (e.g. long texts) can cause some issues with layout
75 * When setting new QBarCategoriesAxis to existing chart, axis doesn't initialise properly
75 * When setting new QBarCategoriesAxis to existing chart, axis doesn't initialise properly
76
76
77 Main Changes between Beta and Final
77 Main Changes between Beta and Final
78 ===================================
78 ===================================
79 * QML examples and documentation has been added
79 * QML examples and documentation has been added
80 * Axis implementation has been refactored in order to support more flexible axis schemes in future.
80 * Axis implementation has been refactored in order to support more flexible axis schemes in future.
81 * Setting Multiple axes is now possible and you can select which one is visible.
81 * Setting Multiple axes is now possible and you can select which one is visible.
82 * In future it's possible to display several axes at the same time.
82 * In future it's possible to display several axes at the same time.
83 * QBarCategoriesAxis and QValuesAxis classes have been added.
83 * QBarCategoriesAxis and QValuesAxis classes have been added.
84 * QBarSeries change to QGroupedBarSeries introduced in Beta has been reverted.
84 * QBarSeries change to QGroupedBarSeries introduced in Beta has been reverted.
85 * Getting Started documentation has been added.
85 * "Getting Started" documentation has been added.
86 * Chart layout management has been refactored.
86 * Chart layout management has been refactored.
87
87
General Comments 0
You need to be logged in to leave comments. Login now