##// END OF EJS Templates
Known issue to README: staticlib and QML apps
Known issue to README: staticlib and QML apps

File last commit:

r2045:223802424a4d release-1.1.0
r2045:223802424a4d release-1.1.0
Show More
README
121 lines | 4.4 KiB | text/plain | TextLexer
samakkon
Added License file
r916 --------------------------------
Tero Ahola
Updated readme for 1.1.0
r2014 Commercial Charts Add-on 1.1.0
samakkon
Added License file
r916 --------------------------------
Michal Klocek
monir. typo
r1678 What's in Qt Commercial Charts
samakkon
Added License file
r916 =============================
Directory structure:
src/
Source code of the Qt Commercial Charts
Tero Ahola
Fixed README formatting and plugin folder description
r1402 plugins/
QML bindings plugin and QtCreator plugin
samakkon
Added License file
r916 examples/
Some examples of using Qt Commercial Charts
demos/
Tero Ahola
Fixed README formatting and plugin folder description
r1402 More versatile example applications showing how to customize charts,
samakkon
License files and readme
r917 combine several chart types and implement interaction in charts
samakkon
Added License file
r916 doc/
Documentation
Michal Klocek
minor. Release polishing
r1049 licenses/
Tero Ahola
Updated readme for 1.1.0
r2014 Licensing information
samakkon
License files and readme
r917
Michal Klocek
minor. Release polishing
r1049 Building
samakkon
Added License file
r916 ========
Tero Ahola
Updated readme for 1.1.0
r2014 Please note that if you have already installed a previous version of
QtCommercial Charts, you should first uninstall it with
make uninstall
samakkon
Added License file
r916
Michal Klocek
monir. typo
r1678 Configure project with qmake and build project with make:
Michal Klocek
Updated README
r1677 (Linux) make
Michal Klocek
minor. Release polishing
r1049 (Windows with MinGw) mingw32-make
Tero Ahola
Fixed a typo in README
r1403 (Visual Studio) nmake
Jani Honkonen
Adding support for static builds.
r1440 (OSX) make
samakkon
Added License file
r916
Michal Klocek
Updated README
r1677 For debug builds:
Tero Ahola
Updated readme for 1.1.0
r2014 qmake CONFIG+=debug; make
Michal Klocek
Updated README
r1677 or
Michal Klocek
monir. typo
r1678 qmake CONFIG+=debug_and_release; make debug
Michal Klocek
Updated README
r1677
For release builds:
qmake CONFIG+=release ; make
or
Michal Klocek
monir. typo
r1678 qmake CONFIG+=debug_and_release; make release
Michal Klocek
Updated README
r1677
For both builds
Tero Ahola
Updated readme for 1.1.0
r2014 qmake CONFIG+="debug_and_release build_all"; make
Michal Klocek
Updated README
r1677
samakkon
Added License file
r916 If you want to install the libraries to your Qt library directory use:
Michal Klocek
minor. Release polishing
r1049 make install
samakkon
Added License file
r916
Michal Klocek
minor. Release polishing
r1049 If you want to uninstall the libraries
make uninstall
samakkon
Added License file
r916
Jani Honkonen
Adding support for static builds.
r1440 Building as a statically linked library
=======================================
The same as above applies you will just have to add staticlib to the CONFIG:
qmake CONFIG+=staticlib
samakkon
Added License file
r916 Documentation
=============
Tero Ahola
Updated readme for 1.1.0
r2014 Documentation can be found from doc/html directory. The documentation
can also be generated with:
make docs
samakkon
Added License file
r916
Tero Ahola
Updated readme for 1.1.0
r2014 Main Changes between 1.0.0 and 1.1.0
sauimone
updated README
r1665 ===================================
Tero Ahola
Updated readme for 1.1.0
r2014 - Versions 1.0.0 and 1.1.0 are not binary or source compatible. We are sorry about this.
Tero Ahola
Added info about changed property names to README
r2041 - ValuesAxis renamed to ValueAxis
- QAbstractAxis::arrowVisible and other related methods were renamed to
QAbstractSeries::lineVisible
- QChart::margins was replaced with QChart::minimumMargins
- BarCategoriesAxis renamed to BarCategoryAxis
Tero Ahola
Updated readme for 1.1.0
r2014 - Horizontal bar series has been added
- New axis types: DateTimeAxis and CategoryAxis
- PieSeries now supports drawing as a donut
- Drawing performance of LineSeries has been improved
- New data replacament method with better performance implemented in XYSeries
- It is now possible to take PieSlices/BarSets back from the series without deleting
- Build issues with Embedded Linux on ARM fixed
- Several new examples and demos
Tero Ahola
A couple of new bug fixes mentioned in README
r2017 - QML Axis APIs and series handling in ChartView API improved
Tero Ahola
Updated readme for 1.1.0
r2014 - Improved QML API: new borders/lines related properties for series
- ChartView margins are now configured via minimumMargins property
- QML API version number changed to 1.1
- You can now set a custom format for ValueAxis labels
- ValueAxis label layout improved
Marek Rosa
README update: One more main change and one more bugfix
r2019 - Two new ways of placing a label inside a pie slice
Tero Ahola
Updated readme for 1.1.0
r2014
Bug Fixes
==========
- Fixed: When a spline series is cleared then the first points still end up being drawn
- Fixed nice numbers algorithm issue with zoom
- Fixed configuration issues with debug_and_release and build_all flags
- Fixed setting color for a BarSet label
- Fixed bar series autoscaling with negative values
Tero Ahola
A couple of new bug fixes mentioned in README
r2017 - Fixed build issue on OSX caused by an extra space in a LIBS definition
- Switched the z-order of series to be on top of axis
- The pen of legend marker now matches the color of legend label
- Fixed initializing the color of a PieSlice and border color of a ScatterSeris in QML
- Antialias is now disabled in declarative plugin by default
- Fixed QML PieModelMappers defined outside the series scope
- Fixed an issue with QLegend attach requiring a resize
Marek Rosa
README update: One more main change and one more bugfix
r2019 - Fixed an issue with the axes ranges values being overwritten if set before axis added to the chart
Tero Ahola
Updated readme for 1.1.0
r2014
Known Issues
============
- Automatic scaling of the axes is only done when you add a series on a chart
- If adding several axes, automatic scaling is done based on the last axis added
- Only one Y and X axis can be visible at the same time
- Unit label for axes is not implemented
- Switching off OpenGL (after using a QGLWidget as a viewport) causes a crash in OSX
- Setting minimum margins breaks down the layout in some cases
- DateTimeAxis is not supported on ARM because of floating point precision
issues (qreals are floats)
Tero Ahola
A couple of new bug fixes mentioned in README
r2017 - Declarative plugin is available from Qt 4.7.4 onwards because of missing
Q_REVISION macro in the earlier Qt releases
- Fixed BarSet.remove in QML API
Tero Ahola
Known issue to README: staticlib and QML apps
r2045 - Object compatibility issues between the QML APIs and C++ APIs, if
QtCommercial Charts is compiled as a static library