@@ -1,116 +1,119 | |||
|
1 | 1 | -------------------------------- |
|
2 | 2 | Commercial Charts Add-on 1.1.0 |
|
3 | 3 | -------------------------------- |
|
4 | 4 | |
|
5 | 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 information |
|
23 | 23 | |
|
24 | 24 | Building |
|
25 | 25 | ======== |
|
26 | 26 | Please note that if you have already installed a previous version of |
|
27 | 27 | QtCommercial Charts, you should first uninstall it with |
|
28 | 28 | make uninstall |
|
29 | 29 | |
|
30 | 30 | Configure project with qmake and build project with make: |
|
31 | 31 | (Linux) make |
|
32 | 32 | (Windows with MinGw) mingw32-make |
|
33 | 33 | (Visual Studio) nmake |
|
34 | 34 | (OSX) make |
|
35 | 35 | |
|
36 | 36 | For debug builds: |
|
37 | 37 | qmake CONFIG+=debug; make |
|
38 | 38 | or |
|
39 | 39 | qmake CONFIG+=debug_and_release; make debug |
|
40 | 40 | |
|
41 | 41 | For release builds: |
|
42 | 42 | qmake CONFIG+=release ; make |
|
43 | 43 | or |
|
44 | 44 | qmake CONFIG+=debug_and_release; make release |
|
45 | 45 | |
|
46 | 46 | For both builds |
|
47 | 47 | qmake CONFIG+="debug_and_release build_all"; make |
|
48 | 48 | |
|
49 | 49 | If you want to install the libraries to your Qt library directory use: |
|
50 | 50 | make install |
|
51 | 51 | |
|
52 | 52 | If you want to uninstall the libraries |
|
53 | 53 | make uninstall |
|
54 | 54 | |
|
55 | 55 | Building as a statically linked library |
|
56 | 56 | ======================================= |
|
57 | 57 | |
|
58 | 58 | The same as above applies you will just have to add staticlib to the CONFIG: |
|
59 | 59 | qmake CONFIG+=staticlib |
|
60 | 60 | |
|
61 | 61 | Documentation |
|
62 | 62 | ============= |
|
63 | 63 | Documentation can be found from doc/html directory. The documentation |
|
64 | 64 | can also be generated with: |
|
65 | 65 | make docs |
|
66 | 66 | |
|
67 | 67 | Main Changes between 1.0.0 and 1.1.0 |
|
68 | 68 | =================================== |
|
69 | 69 | - Versions 1.0.0 and 1.1.0 are not binary or source compatible. We are sorry about this. |
|
70 | - ValuesAxis renamed to ValueAxis | |
|
71 | - QAbstractAxis::arrowVisible and other related methods were renamed to | |
|
72 | QAbstractSeries::lineVisible | |
|
73 | - QChart::margins was replaced with QChart::minimumMargins | |
|
74 | - BarCategoriesAxis renamed to BarCategoryAxis | |
|
70 | 75 | - Horizontal bar series has been added |
|
71 | 76 | - New axis types: DateTimeAxis and CategoryAxis |
|
72 | 77 | - PieSeries now supports drawing as a donut |
|
73 | - ValuesAxis renamed to ValueAxis | |
|
74 | - BarCategoriesAxis renamed to BarCategoryAxis | |
|
75 | 78 | - Drawing performance of LineSeries has been improved |
|
76 | 79 | - New data replacament method with better performance implemented in XYSeries |
|
77 | 80 | - It is now possible to take PieSlices/BarSets back from the series without deleting |
|
78 | 81 | - Build issues with Embedded Linux on ARM fixed |
|
79 | 82 | - Several new examples and demos |
|
80 | 83 | - QML Axis APIs and series handling in ChartView API improved |
|
81 | 84 | - Improved QML API: new borders/lines related properties for series |
|
82 | 85 | - ChartView margins are now configured via minimumMargins property |
|
83 | 86 | - QML API version number changed to 1.1 |
|
84 | 87 | - You can now set a custom format for ValueAxis labels |
|
85 | 88 | - ValueAxis label layout improved |
|
86 | 89 | - Two new ways of placing a label inside a pie slice |
|
87 | 90 | |
|
88 | 91 | Bug Fixes |
|
89 | 92 | ========== |
|
90 | 93 | - Fixed: When a spline series is cleared then the first points still end up being drawn |
|
91 | 94 | - Fixed nice numbers algorithm issue with zoom |
|
92 | 95 | - Fixed configuration issues with debug_and_release and build_all flags |
|
93 | 96 | - Fixed setting color for a BarSet label |
|
94 | 97 | - Fixed bar series autoscaling with negative values |
|
95 | 98 | - Fixed build issue on OSX caused by an extra space in a LIBS definition |
|
96 | 99 | - Switched the z-order of series to be on top of axis |
|
97 | 100 | - The pen of legend marker now matches the color of legend label |
|
98 | 101 | - Fixed initializing the color of a PieSlice and border color of a ScatterSeris in QML |
|
99 | 102 | - Antialias is now disabled in declarative plugin by default |
|
100 | 103 | - Fixed QML PieModelMappers defined outside the series scope |
|
101 | 104 | - Fixed an issue with QLegend attach requiring a resize |
|
102 | 105 | - Fixed an issue with the axes ranges values being overwritten if set before axis added to the chart |
|
103 | 106 | |
|
104 | 107 | Known Issues |
|
105 | 108 | ============ |
|
106 | 109 | - Automatic scaling of the axes is only done when you add a series on a chart |
|
107 | 110 | - If adding several axes, automatic scaling is done based on the last axis added |
|
108 | 111 | - Only one Y and X axis can be visible at the same time |
|
109 | 112 | - Unit label for axes is not implemented |
|
110 | 113 | - Switching off OpenGL (after using a QGLWidget as a viewport) causes a crash in OSX |
|
111 | 114 | - Setting minimum margins breaks down the layout in some cases |
|
112 | 115 | - DateTimeAxis is not supported on ARM because of floating point precision |
|
113 | 116 | issues (qreals are floats) |
|
114 | 117 | - Declarative plugin is available from Qt 4.7.4 onwards because of missing |
|
115 | 118 | Q_REVISION macro in the earlier Qt releases |
|
116 | 119 | - Fixed BarSet.remove in QML API |
General Comments 0
You need to be logged in to leave comments.
Login now