@@ -10,7 +10,7 Directory structure: | |||
|
10 | 10 | src/ |
|
11 | 11 | Source code of the Qt Commercial Charts |
|
12 | 12 | plugins/ |
|
13 | QML bindings plugin and QtCreator plugin | |
|
13 | QML bindings plugins and QtCreator plugin | |
|
14 | 14 | examples/ |
|
15 | 15 | Some examples of using Qt Commercial Charts |
|
16 | 16 | demos/ |
@@ -65,23 +65,34 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 | - New series type added: Box and whiskers | |
|
71 | 72 | - QtQuick 2 support added |
|
72 | 73 | |
|
73 | Bug Fixes | |
|
74 | ========== | |
|
75 | TODO | |
|
74 | Bug Fixes and minor new features | |
|
75 | ================================ | |
|
76 | 76 | |
|
77 | Known Issues | |
|
78 | ============ | |
|
79 | - Automatic scaling of the axes is only done when you add a series on a chart | |
|
80 | - DateTimeAxis is not supported on ARM because of floating point precision | |
|
81 | issues (qreals are floats) | |
|
82 | - Declarative plugin is available from Qt 4.7.4 onwards because of missing | |
|
83 | Q_REVISION macro in the earlier Qt releases | |
|
84 | - Defining axis min-max values sometimes affects other axes with the same orientation | |
|
85 | - See for example the secondary y-axis of QML Weather demo application | |
|
86 | - The work-around is to set axis range dynamically instead of initializing min and | |
|
87 | max properties to certain values | |
|
77 | - 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 | |
|
82 | - New: Added QChart::zoomReset() and QChart::isZoomed() | |
|
83 | - New: Added API for setting roundness of the corners for the background of the chart | |
|
84 | - Fixed: If vertical QLogValueAxis base is selected so that it has only single visible tick, | |
|
85 | its label always displays as "..." | |
|
86 | - Fixed: Crash when removing pie series from chart | |
|
87 | - Fixed: Most themes disable axis shades | |
|
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 | 23 | As of release 1.3.0, QtCommercial Charts is also usable with QtQuick 2, though the performance |
|
24 | 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 | 29 | \raw HTML |
|
27 | 30 | <table cellpadding="2" cellspacing="1" border="0" width="95%" class="indextable"> |
|
28 | 31 | <tr> |
@@ -223,6 +223,8 void QAbstractSeries::hide() | |||
|
223 | 223 | /*! |
|
224 | 224 | Attach \a axis to the series. |
|
225 | 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 | 228 | \sa QChart::addAxis(), QChart::createDefaultAxes() |
|
227 | 229 | */ |
|
228 | 230 | bool QAbstractSeries::attachAxis(QAbstractAxis* axis) |
General Comments 0
You need to be logged in to leave comments.
Login now