##// END OF EJS Templates
Updated version number and README for 1.2.1
Miikka Heikkinen -
r2426:dc3d4ff0038e
parent child
Show More
@@ -1,5 +1,5
1 --------------------------------
1 --------------------------------
2 Commercial Charts Add-on 1.2.0
2 Commercial Charts Add-on 1.2.1
3 --------------------------------
3 --------------------------------
4
4
5 What's in Qt Commercial Charts
5 What's in Qt Commercial Charts
@@ -64,40 +64,19 Documentation can be found from doc/html directory. The documentation
64 can also be generated with:
64 can also be generated with:
65 make docs
65 make docs
66
66
67 Main Changes between 1.1.0 and 1.2.0
67 Main Changes between 1.2.0 and 1.2.1
68 ===================================
68 ===================================
69 - Multiple axis support and possibility to define the location of the Axis on chart
69
70 - New axis type: QLogValueAxis for creating Logarithmic Axes
70 - Commercial Charts documentation also as *.qch file
71 - Axis titles added
72 - Axis management improvements
73 - QChart::addAxis
74 - QAbstractSeries::attachAxis
75 - Legend marker API added
76 -
77 - Hovered signal added to XYSeries (Line, Spline, Area and Scatter)
78 - Mapping between chart coordinates and pixel coordinates added
79 - QChart::mapToValue
80 - QChart::mapToPosition
81 - Several new examples and demos:
82 - Legend Markers
83 - Log Value Axis
84 - Multiaxis
85 - Audio - Visualizes mic input
86 - Callout - Example how to add additional information on top of chart
87 - QML Custom Legend - Example how to build your custom legend in QML
88 - ChartView margins can be configured via Margins property
89 - QML API version number changed to 1.2
90 - Layout management has been improved
91 - Qt 5 Compatibility tested with Qt 5.0.0RC2
92
71
93 Bug Fixes
72 Bug Fixes
94 ==========
73 ==========
95 - Fixed: Axis label format errors with several formatters
74 - Fixed: Crash with NaN, inf, -inf values (values are ignored)
96 - Fixed: QLegend update issues
75 - Fixed: Axis label truncated with multiple axis
97 - Fixed: XYModelMapper incompatibility with QDate and QDateTime data
76 - Fixed: Using setLineVisible(false) on a QBarCategoryAxis gives blurry text
98 - Fixed: The declaration order of QML CategoryRange objects should not affect CategoryAxis
77 - Fixed: Set the range to min and max for default axes from previously added series
99 - Fixed: Changing axis tick count does not trigger repaint
78 - Fixed: Axes use incorrect bounding rectangle to calculate sizeHint when labels are in non-default angle
100 - Fixed: Charts layout is not calculated correctly after the change in the text of legend marker
79 - Fixes: Axis titles can slightly overlap with axis labels and axis lines
101
80
102 Known Issues
81 Known Issues
103 ============
82 ============
@@ -23,11 +23,11
23
23
24 #include <qglobal.h>
24 #include <qglobal.h>
25
25
26 #define QTCOMMERCIALCHART_VERSION_STR "1.2.0"
26 #define QTCOMMERCIALCHART_VERSION_STR "1.2.1"
27 /*
27 /*
28 QTCOMMERCIALCHART_VERSION is (major << 16) + (minor << 8) + patch.
28 QTCOMMERCIALCHART_VERSION is (major << 16) + (minor << 8) + patch.
29 */
29 */
30 #define QTCOMMERCIALCHART_VERSION 0x010200
30 #define QTCOMMERCIALCHART_VERSION 0x010201
31 /*
31 /*
32 can be used like #if (QTCOMMERCIALCHART_VERSION >= QTCOMMERCIALCHART_VERSION_CHECK(1, 1, 0))
32 can be used like #if (QTCOMMERCIALCHART_VERSION >= QTCOMMERCIALCHART_VERSION_CHECK(1, 1, 0))
33 */
33 */
General Comments 0
You need to be logged in to leave comments. Login now