##// END OF EJS Templates
Fixed a bug with legend attach requiring a screen resize to update UI
Fixed a bug with legend attach requiring a screen resize to update UI

File last commit:

r1678:a3b35ca95c5c
r2013:aa64defd89b9
Show More
README
87 lines | 2.6 KiB | text/plain | TextLexer
samakkon
Added License file
r916 --------------------------------
sauimone
updated README
r1665 Commercial Charts Add-on 1.0.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/
samakkon
License files and readme
r917 Licensing infromation
Michal Klocek
minor. Release polishing
r1049 Building
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:
qmake CONFIG+=debug ; make
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
Michal Klocek
monir. typo
r1678 qmake CONFIG+=debug_and_release; make all
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
=============
sauimone
updated README
r1665 Documentation can be found from doc/html directory.
samakkon
Added License file
r916
sauimone
updated README
r1665 The documentation can also be generated with "make docs".
samakkon
Added License file
r916
KNOWN ISSUES
============
Tero Ahola
Updated wiki beta checklist stuff to README
r1398 * Logartmic, polar axis are not supported at the moment.
* Automatic scaling of the axes is only done when you add a series on a chart
Tero Ahola
Fixed README formatting and plugin folder description
r1402 * API for Animations state (signaling started, finished) and setting duration
sauimone
updated README
r1409 etc. is missing
sauimone
updated README
r1665 * Layout in QBarCategoriesAxis can cause categories to overlap
* Only one Y and X axis can be visible at the same time
* Unit label for axes is not implemented
* In some cases (e.g. long texts) can cause some issues with layout
* When setting new QBarCategoriesAxis to existing chart, axis doesn't initialise properly
Main Changes between Beta and Final
===================================
* QML examples and documentation has been added
* Axis implementation has been refactored in order to support more flexible axis schemes in future.
* Setting Multiple axes is now possible and you can select which one is visible.
* In future it's possible to display several axes at the same time.
* QBarCategoriesAxis and QValuesAxis classes have been added.
* QBarSeries change to QGroupedBarSeries introduced in Beta has been reverted.
Michal Klocek
monir. typo
r1678 * "Getting Started" documentation has been added.
sauimone
updated README
r1665 * Chart layout management has been refactored.
Tero Ahola
Updated wiki beta checklist stuff to README
r1398