##// END OF EJS Templates
Additions to README...
Miikka Heikkinen -
r2577:868649a9faae
parent child
Show More
@@ -1,98 +1,108
1 1 ---------------------------------
2 2 Qt Enterprise Charts Add-on 1.3.0
3 3 ---------------------------------
4 4
5 5 What's in Qt Enterprise Charts
6 6 ==============================
7 7
8 8 Directory structure:
9 9
10 10 src/
11 11 Source code of the Qt Enterprise Charts
12 12 plugins/
13 13 QML bindings plugins and QtCreator plugin
14 14 examples/
15 15 Some examples of using Qt Enterprise 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 Qt Enterprise 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 and doc/qch directories. The documentation
64 64 can also be generated with:
65 65 make docs
66 66
67 67 Main Changes between 1.2.1 and 1.3.0
68 68 ====================================
69 69
70 70 - New chart type added: Polar chart
71 71 - New series type added: Box and whiskers
72 72 - QtQuick 2 support added
73 - Note: Since Qt Enterprise Charts still uses QGraphicsView framework under the hood
74 even with QtQuick 2, its performance is actually better with QtQuick 1 than with QtQuick 2.
73 75
74 76 Bug Fixes and minor new features
75 77 ================================
76 78
77 79 - New: Added missing QML support for LogValueAxis
78 - New: Implement index based removing/replacing points in series
79 - New: Added API to specify plot area background
80 - New: Added HTML support for various text items
81 Note that '\n' no longer causes new line in text items, use HTML tag <br/> instead
80 - New: Implement index based removing/replacing points in a series
81 - New: Added API to specify plot area background for the chart
82 - New: Added HTML support for various text items such as axis labels or titles
83 - HTML tags (e.g. <br/>) and character codes (e.g. &deg;) are now supported
84 - Setting pen for text items is deprecated and does nothing
85 - When setting brush for text items, only the color of the brush is relevant.
86 It specifies the default text color for the item.
87 - Logic for identifying axis label format specifiers was improved, so adding
88 additional information to labels via label format string is now more viable.
82 89 - New: Added QChart::zoomReset() and QChart::isZoomed()
83 90 - New: Added API for setting roundness of the corners for the background of the chart
84 91 - Fixed: If vertical QLogValueAxis base is selected so that it has only single visible tick,
85 92 its label always displays as "..."
86 93 - Fixed: Crash when removing pie series from chart
87 94 - Fixed: Most themes disable axis shades
88 95 - Fixed: Lingering shades from high contrast theme
89 96 - Fixed: Crash when adding/removing points during animation
90 97 - Fixed: Wrong expand direction with rotated chart view
91 98 - Fixed: Android build errors
92 - Fixed: Legend marker brush for series with black pen
93 99 - Fixed: Explicitly set default pen/brush/font got overridden by theme
100 - Default pens, brushes, and fonts were changed to ones that won't clash with commonly
101 used types of the same. Most notably black pen is no longer default and won't anymore
102 get overridden by theme if used.
94 103 - Fixed: Multi-line axis titles and labels now position correctly
104 - Note that '\n' no longer causes new line in text items, use HTML tag <br/> instead
95 105 - Fixed: Legend markers text truncation with small font sizes
96 106 - Fixed: QChartView right click zoom out when zooming only along one axis
97 107 - Fixed: Crash or memory leak when resetting animation options mid-animation
98 108 - Fixed: QBarCategoryAxis doesn't notify domain on category remove
General Comments 0
You need to be logged in to leave comments. Login now