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