##// END OF EJS Templates
Selectable outlines for box...
Selectable outlines for box Change-Id: Ic31fa26f914baaa6c26f52c73ca4328ec7523581 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>

File last commit:

r2571:ceb9510a0ade
r2573:3880b19e7795
Show More
README
98 lines | 3.2 KiB | text/plain | TextLexer
--------------------------------
Commercial Charts Add-on 1.3.0
--------------------------------
What's in Qt Commercial Charts
=============================
Directory structure:
src/
Source code of the Qt Commercial Charts
plugins/
QML bindings plugins and QtCreator plugin
examples/
Some examples of using Qt Commercial Charts
demos/
More versatile example applications showing how to customize charts,
combine several chart types and implement interaction in charts
doc/
Documentation
licenses/
Licensing information
Building
========
Please note that if you have already installed a previous version of
QtCommercial Charts, you should first uninstall it with
make uninstall
Configure project with qmake and build project with make:
(Linux) make
(Windows with MinGw) mingw32-make
(Visual Studio) nmake
(OSX) make
For debug builds:
qmake CONFIG+=debug; make
or
qmake CONFIG+=debug_and_release; make debug
For release builds:
qmake CONFIG+=release ; make
or
qmake CONFIG+=debug_and_release; make release
For both builds
qmake CONFIG+="debug_and_release build_all"; make
If you want to install the libraries to your Qt library directory use:
make install
If you want to uninstall the libraries
make uninstall
Building as a statically linked library
=======================================
The same as above applies you will just have to add staticlib to the CONFIG:
qmake CONFIG+=staticlib
Documentation
=============
Documentation can be found from doc/html and doc/qch directories. The documentation
can also be generated with:
make docs
Main Changes between 1.2.1 and 1.3.0
====================================
- New chart type added: Polar chart
- New series type added: Box and whiskers
- QtQuick 2 support added
Bug Fixes and minor new features
================================
- New: Added missing QML support for LogValueAxis
- New: Implement index based removing/replacing points in series
- New: Added API to specify plot area background
- New: Added HTML support for various text items
Note that '\n' no longer causes new line in text items, use HTML tag <br/> instead
- New: Added QChart::zoomReset() and QChart::isZoomed()
- New: Added API for setting roundness of the corners for the background of the chart
- Fixed: If vertical QLogValueAxis base is selected so that it has only single visible tick,
its label always displays as "..."
- Fixed: Crash when removing pie series from chart
- Fixed: Most themes disable axis shades
- Fixed: Lingering shades from high contrast theme
- Fixed: Crash when adding/removing points during animation
- Fixed: Wrong expand direction with rotated chart view
- Fixed: Android build errors
- Fixed: Legend marker brush for series with black pen
- Fixed: Explicitly set default pen/brush/font got overridden by theme
- Fixed: Multi-line axis titles and labels now position correctly
- Fixed: Legend markers text truncation with small font sizes
- Fixed: QChartView right click zoom out when zooming only along one axis
- Fixed: Crash or memory leak when resetting animation options mid-animation
- Fixed: QBarCategoryAxis doesn't notify domain on category remove