##// END OF EJS Templates
Show More
Commit message Age Author Refs
r2902:1f7564788f9d
Some perfs improvments. Fixed bug on update outside of data range. Signed-off-by: jeandet <alexis.jeandet@member.fsf.org>
5.7
0
r2901:d2a7a7849617
Added colormap chart examples Improved Zoom, added direction parameter. Signed-off-by: jeandet <alexis.jeandet@member.fsf.org>
0
r2900:7532b52dd10c
Added parametric zoom on QChart. Signed-off-by: jeandet <alexis.jeandet@member.fsf.org>
0
r2899:905c34fe48ad
Initial ColorMap Chart implementation. Signed-off-by: jeandet <alexis.jeandet@member.fsf.org>
0
r2898:03a6177a3223
Merge remote-tracking branch 'origin/5.6' into 5.7 Conflicts: src/charts/charts.pro src/charts/qchartglobal.h src/chartsqml2/chartsqml2.pro tests/auto/chartdataset/tst_chartdataset.cpp tests/auto/domain/tst_domain.cpp Change-Id: I9bfc63f6e93f9a3b86e53aca218dd3a48bb2ffc1
Liang Qi
0
r2897:f5164ec8f20d
Update candlestick chart model mappers API - updated QCandlestickModelMapper - updated QHCandlestickModelMapper - updated QVCandlestickModelMapper - renamed QCandlestickSeries::candlestickSets() to sets() Task-number: QTBUG-54046 Change-Id: I650e5237a257c85905818db8dc2e2f2cf0af5aad Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
Alexander Mishin
dev
0
r2896:facc2941efbf
Added candlestick chart type - added QCandlestickSeries - added QCandlestickSet - added QCandlestickLegendMarker - added model mappers - added Candlestick, CandlestickChartItem, CandlestickData - added SeriesTypeCandlestick to SeriesType enum - added LegendMarkerTypeCandlestick to LegendMarkerType enum - added candlestick chart example - added QML candlestick chart example - added candlestick tester - added autotests - added documentation [ChangeLog][CandlestickChart] Added new chart type: Candlestick Chart. Task-number: QTBUG-50544 Change-Id: I17d18dfa23e0ea209bf51ab1e349585b9cb50a8f Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
Alexander Mishin
0
r2895:e9a2e2a5e9c0
Merge remote-tracking branch 'origin/5.7' into dev Change-Id: I86dec1064d79704214e885681449ca347b193d66
Liang Qi
0
r2894:d137ae33ccf0
do not enable example installs explicitly any more it's done centrally now. Change-Id: I8e025df73f1bd1e5e5129cfb4cbcb40b044374bd Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Oswald Buddenhagen
5.6
0
r2893:0464d42b101e
Merge remote-tracking branch 'origin/5.6' into 5.7 Conflicts: src/charts/doc/qtcharts.qdocconf Change-Id: If6160b2f643e7df8c32400b97afac229b95b78de
Liang Qi
0
< 1 2 3 4 5 6 7 .. 291 >

---------------
Qt Charts 5.7.0
---------------

Qt Charts module provides a set of easy to use chart components. It uses
the Qt Graphics View Framework, therefore charts can be easily integrated
to modern user interfaces.

System Requirements
===================

- Qt 5.4 or newer
- For QML applications QtQuick 2 is required
- Manipulating Qt Charts graphs with QML Designer requires Qt Creator 3.3 or newer

Building
========

Configure the project with qmake:
qmake

After running qmake, build the project with make:
(Linux) make
(Windows with MinGw) mingw32-make
(Windows with Visual Studio) nmake
(OS X) make

The above generates the default makefiles for your configuration, which is typically
the release build if you are using precompiled binary Qt distribution. To build both
debug and release, or one specifically, use one of the following qmake lines instead.

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 (Windows/OS X only):
qmake CONFIG+="debug_and_release build_all"
make

After building, install the module to your Qt directory:
make install

If you want to uninstall the module:
make uninstall

Building as a statically linked library
=======================================

The same as above applies, you will just have to add static to the CONFIG:
qmake CONFIG+=static

Documentation
=============

The documentation can be generated with:
make docs

The documentation is generated into the doc folder under the build folder.
Both Qt Assistant (qtcharts.qch) and in HTML format (qtcharts subfolder)
documentation is generated.

Please refer to the generated documentation for more information:
doc/qtcharts/qtcharts-index.html

Known issues
============

- Zooming too far or too close may eventually freeze the zooming and scrolling.