##// END OF EJS Templates
A couple of new bug fixes mentioned in README
Tero Ahola -
r2017:d11fc3875002
parent child
Show More
@@ -77,7 +77,7 Main Changes between 1.0.0 and 1.1.0
77 - It is now possible to take PieSlices/BarSets back from the series without deleting
77 - It is now possible to take PieSlices/BarSets back from the series without deleting
78 - Build issues with Embedded Linux on ARM fixed
78 - Build issues with Embedded Linux on ARM fixed
79 - Several new examples and demos
79 - Several new examples and demos
80 - QML Axis APIs improved
80 - QML Axis APIs and series handling in ChartView API improved
81 - Improved QML API: new borders/lines related properties for series
81 - Improved QML API: new borders/lines related properties for series
82 - ChartView margins are now configured via minimumMargins property
82 - ChartView margins are now configured via minimumMargins property
83 - QML API version number changed to 1.1
83 - QML API version number changed to 1.1
@@ -91,6 +91,13 Bug Fixes
91 - Fixed configuration issues with debug_and_release and build_all flags
91 - Fixed configuration issues with debug_and_release and build_all flags
92 - Fixed setting color for a BarSet label
92 - Fixed setting color for a BarSet label
93 - Fixed bar series autoscaling with negative values
93 - Fixed bar series autoscaling with negative values
94 - Fixed build issue on OSX caused by an extra space in a LIBS definition
95 - Switched the z-order of series to be on top of axis
96 - The pen of legend marker now matches the color of legend label
97 - Fixed initializing the color of a PieSlice and border color of a ScatterSeris in QML
98 - Antialias is now disabled in declarative plugin by default
99 - Fixed QML PieModelMappers defined outside the series scope
100 - Fixed an issue with QLegend attach requiring a resize
94
101
95 Known Issues
102 Known Issues
96 ============
103 ============
@@ -102,3 +109,6 Known Issues
102 - Setting minimum margins breaks down the layout in some cases
109 - Setting minimum margins breaks down the layout in some cases
103 - DateTimeAxis is not supported on ARM because of floating point precision
110 - DateTimeAxis is not supported on ARM because of floating point precision
104 issues (qreals are floats)
111 issues (qreals are floats)
112 - Declarative plugin is available from Qt 4.7.4 onwards because of missing
113 Q_REVISION macro in the earlier Qt releases
114 - Fixed BarSet.remove in QML API
@@ -19,7 +19,7
19 \table
19 \table
20 \row
20 \row
21 \o \br
21 \o \br
22 Then a chart with some accurate historical data that makes us to use a DateTimeAxis.
22 The next example shows a chart with some accurate historical data that makes us to use a DateTimeAxis.
23 \br
23 \br
24 \br
24 \br
25 \snippet ../demos/qmlaxes/qml/qmlaxes/View2.qml 1
25 \snippet ../demos/qmlaxes/qml/qmlaxes/View2.qml 1
@@ -29,7 +29,7
29 \table
29 \table
30 \row
30 \row
31 \o \br
31 \o \br
32 And finally a chart that uses a CategoryAxis to make the data easier to understand.
32 And the final example with a chart that uses a CategoryAxis to make the data easier to understand.
33 \br
33 \br
34 \br
34 \br
35 \snippet ../demos/qmlaxes/qml/qmlaxes/View3.qml 1
35 \snippet ../demos/qmlaxes/qml/qmlaxes/View3.qml 1
General Comments 0
You need to be logged in to leave comments. Login now