##// END OF EJS Templates
Readme up to date for 1.3.0, and some minor doc fixes...
Miikka Heikkinen -
r2571:ceb9510a0ade
parent child
Show More
@@ -10,7 +10,7 Directory structure:
10 src/
10 src/
11 Source code of the Qt Commercial Charts
11 Source code of the Qt Commercial Charts
12 plugins/
12 plugins/
13 QML bindings plugin and QtCreator plugin
13 QML bindings plugins and QtCreator plugin
14 examples/
14 examples/
15 Some examples of using Qt Commercial Charts
15 Some examples of using Qt Commercial Charts
16 demos/
16 demos/
@@ -65,23 +65,34 can also be generated with:
65 make docs
65 make docs
66
66
67 Main Changes between 1.2.1 and 1.3.0
67 Main Changes between 1.2.1 and 1.3.0
68 ===================================
68 ====================================
69
69
70 - New chart type added: Polar chart
70 - New chart type added: Polar chart
71 - New series type added: Box and whiskers
71 - QtQuick 2 support added
72 - QtQuick 2 support added
72
73
73 Bug Fixes
74 Bug Fixes and minor new features
74 ==========
75 ================================
75 TODO
76
76
77 - New: Added missing QML support for LogValueAxis
77 Known Issues
78 - New: Implement index based removing/replacing points in series
78 ============
79 - New: Added API to specify plot area background
79 - Automatic scaling of the axes is only done when you add a series on a chart
80 - New: Added HTML support for various text items
80 - DateTimeAxis is not supported on ARM because of floating point precision
81 Note that '\n' no longer causes new line in text items, use HTML tag <br/> instead
81 issues (qreals are floats)
82 - New: Added QChart::zoomReset() and QChart::isZoomed()
82 - Declarative plugin is available from Qt 4.7.4 onwards because of missing
83 - New: Added API for setting roundness of the corners for the background of the chart
83 Q_REVISION macro in the earlier Qt releases
84 - Fixed: If vertical QLogValueAxis base is selected so that it has only single visible tick,
84 - Defining axis min-max values sometimes affects other axes with the same orientation
85 its label always displays as "..."
85 - See for example the secondary y-axis of QML Weather demo application
86 - Fixed: Crash when removing pie series from chart
86 - The work-around is to set axis range dynamically instead of initializing min and
87 - Fixed: Most themes disable axis shades
87 max properties to certain values
88 - Fixed: Lingering shades from high contrast theme
89 - Fixed: Crash when adding/removing points during animation
90 - Fixed: Wrong expand direction with rotated chart view
91 - Fixed: Android build errors
92 - Fixed: Legend marker brush for series with black pen
93 - Fixed: Explicitly set default pen/brush/font got overridden by theme
94 - Fixed: Multi-line axis titles and labels now position correctly
95 - Fixed: Legend markers text truncation with small font sizes
96 - Fixed: QChartView right click zoom out when zooming only along one axis
97 - Fixed: Crash or memory leak when resetting animation options mid-animation
98 - Fixed: QBarCategoryAxis doesn't notify domain on category remove
@@ -23,6 +23,9
23 As of release 1.3.0, QtCommercial Charts is also usable with QtQuick 2, though the performance
23 As of release 1.3.0, QtCommercial Charts is also usable with QtQuick 2, though the performance
24 is slightly worse than with QtQuick 1 due to additional rendering step that is required.
24 is slightly worse than with QtQuick 1 due to additional rendering step that is required.
25
25
26 \note QtQuick 1 is supported from Qt 4.7.4 onwards because of missing
27 Q_REVISION macro in the earlier Qt releases. QtQuick 2 is supported with only Qt 5.
28
26 \raw HTML
29 \raw HTML
27 <table cellpadding="2" cellspacing="1" border="0" width="95%" class="indextable">
30 <table cellpadding="2" cellspacing="1" border="0" width="95%" class="indextable">
28 <tr>
31 <tr>
@@ -223,6 +223,8 void QAbstractSeries::hide()
223 /*!
223 /*!
224 Attach \a axis to the series.
224 Attach \a axis to the series.
225 \return true if the axis was attached successfully, false otherwise.
225 \return true if the axis was attached successfully, false otherwise.
226 \note If multiple axes of same orientation are attached to same series,
227 they will have same min/max ranges.
226 \sa QChart::addAxis(), QChart::createDefaultAxes()
228 \sa QChart::addAxis(), QChart::createDefaultAxes()
227 */
229 */
228 bool QAbstractSeries::attachAxis(QAbstractAxis* axis)
230 bool QAbstractSeries::attachAxis(QAbstractAxis* axis)
General Comments 0
You need to be logged in to leave comments. Login now