##// END OF EJS Templates
README release update...
Titta Heikkala -
r2640:68c16a95421d
parent child
Show More
@@ -1,5 +1,5
1 1 ----------------------
2 Qt Charts Add-on 1.3.0
2 Qt Charts Add-on 1.3.1
3 3 ----------------------
4 4
5 5 What's in Qt Charts
@@ -23,6 +23,7 licenses/
23 23
24 24 Building
25 25 ========
26
26 27 Please note that if you have already installed a previous version of
27 28 Qt Charts, you should first uninstall it with
28 29 make uninstall
@@ -43,7 +44,7 For release builds:
43 44 or
44 45 qmake CONFIG+=debug_and_release; make release
45 46
46 For both builds
47 For both builds:
47 48 qmake CONFIG+="debug_and_release build_all"; make
48 49
49 50 If you want to leave out demos and examples from the build you can use
@@ -53,61 +54,65 the following config with qmake:
53 54 If you want to install the libraries to your Qt library directory use:
54 55 make install
55 56
56 If you want to uninstall the libraries
57 If you want to uninstall the libraries:
57 58 make uninstall
58 59
59 60 Building as a statically linked library
60 61 =======================================
61 62
62 The same as above applies you will just have to add staticlib to the CONFIG:
63 The same as above applies, you will just have to add staticlib to the CONFIG:
63 64 qmake CONFIG+=staticlib
64 65
65 66 Documentation
66 67 =============
68
67 69 Documentation can be found from doc/html and doc/qch directories. The documentation
68 70 can also be generated with:
69 71 make docs
70 72
71 Main Changes between 1.2.1 and 1.3.0
73 The documentation provided with Charts is generated with qdoc and the creation of the
74 documentation is prioritized for Qt5. We recommend building the documentation using Qt5,
75 if you want to do it yourself. Creating the documentation using Qt4 also works, but some
76 pages are not generated correctly, such as the 'List of All Members' page for all C++ and
77 QML APIs in .qch documentation.
78
79 Main Changes between 1.3.0 and 1.3.1
72 80 ====================================
73 81
74 - New chart type added: Polar chart
75 - New series type added: Box and whiskers
76 - QtQuick 2 support added
77 - Note: Since Qt Charts still uses QGraphicsView framework under the hood
78 even with QtQuick 2, its performance is actually better with QtQuick 1 than with QtQuick 2.
82 - New Qt theme template added
79 83
80 84 Bug Fixes and minor new features
81 85 ================================
82 86
83 - New: Added missing QML support for LogValueAxis
84 - New: Implement index based removing/replacing points in a series
85 - New: Added API to specify plot area background for the chart
86 - New: Added HTML support for various text items such as axis labels or titles
87 - HTML tags (e.g. <br/>) and character codes (e.g. &deg;) are now supported
88 - Setting pen for text items is deprecated and does nothing
89 - When setting brush for text items, only the color of the brush is relevant.
90 It specifies the default text color for the item.
91 - Logic for identifying axis label format specifiers was improved, so adding
92 additional information to labels via label format string is now more viable.
93 - New: Added QChart::zoomReset() and QChart::isZoomed()
94 - New: Added API for setting roundness of the corners for the background of the chart
95 - Fixed: If vertical QLogValueAxis base is selected so that it has only single visible tick,
96 its label always displays as "..."
97 - Fixed: Crash when removing pie series from chart
98 - Fixed: Most themes disable axis shades
99 - Fixed: Lingering shades from high contrast theme
100 - Fixed: Crash when adding/removing points during animation
101 - Fixed: Wrong expand direction with rotated chart view
102 - Fixed: Android build errors
103 - Fixed: Explicitly set default pen/brush/font got overridden by theme
104 - Default pens, brushes, and fonts were changed to ones that won't clash with commonly
105 used types of the same. Most notably black pen is no longer default and won't anymore
106 get overridden by theme if used.
107 - Fixed: Multi-line axis titles and labels now position correctly
108 - Note that '\n' no longer causes new line in text items, use HTML tag <br/> instead
109 - Fixed: Legend markers text truncation with small font sizes
110 - Fixed: QChartView right click zoom out when zooming only along one axis
111 - Fixed: Crash or memory leak when resetting animation options mid-animation
112 - Fixed: QBarCategoryAxis doesn't notify domain on category remove
113 - Fixed: axisXTop QML property now actually puts axis on top
87 - New: Added new hovered signal for bar charts with index information
88 - New: Added example of using dynamically generated image as a brush for scatter series
89 - New: Added HTML support for pie slice labels
90 - New: Added possibility to build Charts without demos and examples
91 - Fixed: Theme initialization performance for bar series is improved
92 - Fixed: Documentation generated against Qt5
93 - Fixed: Pie chart label is truncated if there's not enough space for the label
94 - Fixed: Legend item truncation to start with the longest item
95 - Fixed: Vertical and horizontal truncation of labels in bar chart
96 - Fixed: Dynamic qml axis switch
97 - Fixed: Crash with empty QAreaSeries
98 - Fixed: Missing legend when printing a chart that is not shown
99 - Fixed: Crash when zooming
100 - Fixed: Chart geometry calculated only for visible items
101 - Fixed: Alignment for multiline items
102 - Alignment can be set for multiline items using format:
103 "<p align=\"center\">multiline<br\>item</p>"
104 - Fixed: Removed redundancy when setting the axis title
105 - Fixed: Mouse event handling with rubber band
106 - Fixed: logarithmic axis point calculation for zero and negative values
107 - Fixed: Chart build on Solaris
108 - Fixed: Axis creation with createDefaultAxes() when series of different types are present
109 - Fixed: Debug information text color changed to gray to make it visible with all themes
110 - Fixed: Min and max conflict with standard macros on Windows
111 - Fixed: Chart build with QT_NO_TEXTSTREAM definition
112 - Fixed: Chart build with QT_NO_RUBBERBAND definition
113 - Fixed: Chart build with QT_NO_GRAPHICSEFFECT definition
114
115 Known issues
116 ============
117
118 - Zooming too far or too close may eventually freeze the zooming and scrolling.
General Comments 0
You need to be logged in to leave comments. Login now