##// END OF EJS Templates
Minor fixes and started changing ReadMe
Marek Rosa -
r1363:ed768c7affdd
parent child
Show More
@@ -1,5 +1,5
1 1 --------------------------------
2 Commercial Charts Add-on Preview
2 Commercial Charts Add-on Beta
3 3 --------------------------------
4 4
5 5 Whats in Qt Commercial Charts
@@ -46,15 +46,12 into "doc/html" in the build directory.
46 46
47 47 KNOWN ISSUES
48 48 ============
49 * The preview version of Qt Commercial Charts is still under development
50 and thus should not be used in e.g. product development
51 * The Charts API might change between the Preview and first official release
49 * The Charts API should be stable, but might still change between the Beta and first official release
52 50 * Some areas will be refactored before the first official release
53 * Qt Designer plugin is missing
54 51 * Enable/disable tooltip is missing from the API
55 52 * Mutliple axis are not suported at the moment.
56 53 * Logartmic, polar axis are not supported at the moment.
57 * Getting data from QAbstractItemModel is not feature complete.
54 * Model support for QBarSeries is not complete.
58 55 * Interlnal layout hadnling is not working properly.
59 56 * The QML Bindings are still under development and to be considered as early draft
60 57 * All the current QML APIs are shown in qmlchart demo app
@@ -25,6 +25,7 QTCOMMERCIALCHART_USE_NAMESPACE
25 25 DrilldownBarSeries::DrilldownBarSeries(QStringList categories, QObject *parent)
26 26 : QStackedBarSeries(parent)
27 27 {
28 Q_UNUSED(categories);
28 29 }
29 30
30 31 void DrilldownBarSeries::mapDrilldownSeries(int index, DrilldownBarSeries* drilldownSeries)
@@ -247,7 +247,11 bool QBarSeries::insert(int index, QBarSet *set)
247 247 void QBarSeries::clear()
248 248 {
249 249 Q_D(QBarSeries);
250 d->remove(barSets());
250 bool success = d->remove(barSets());
251 if (success) {
252 emit barsetsRemoved(sets);
253 }
254 return success;
251 255 }
252 256
253 257 /*!
@@ -109,7 +109,6 void QSplineSeriesPrivate::calculateControlPoints()
109 109 }
110 110
111 111 // Calculate first Bezier control points
112 // Right hand side vector
113 112 // Set of equations for P0 to Pn points.
114 113 //
115 114 // | 2 1 0 0 ... 0 0 0 ... 0 0 0 | | P1_1 | | P0 + 2 * P1 |
General Comments 0
You need to be logged in to leave comments. Login now