Qt 3D data visualization framework
Go to file
Qt Submodule Update Bot acff8f083b Update dependencies on 'dev' in qt/qtdatavis3d
Change-Id: Ic2af62e84947d8285f67da19cd79a53152fc6b45
Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
2022-05-11 15:57:32 +00:00
coin Drop documentation build 2021-03-30 12:12:18 +03:00
dist Add changes file for Qt 5.15.1 2020-08-25 07:32:49 +00:00
examples Fix API review finding 2022-02-10 11:17:48 +02:00
src Scatter3DRenderer: initialize variable to make GCC 12 happy 2022-04-25 08:12:44 -07:00
tests Rename the test to match the expected filename 2022-04-26 11:33:41 +00:00
tools/blender Remove obsolete tool scripts and fix sync.profile to make coin pass 2016-01-12 15:38:19 +00:00
.cmake.conf Bump version to 6.4.0 2022-02-01 05:03:55 +02:00
.gitattributes Fix issues with COIN builds 2015-10-22 10:08:51 +00:00
.gitignore Update .gitignore to ignore qmlc files and build folders 2016-11-17 09:48:33 +00:00
.tag Update version and readme for TP 2013-10-14 11:04:33 +03:00
CMakeLists.txt CMake: Bump almost all cmake_minimum_required calls to 3.16 2021-09-22 19:50:34 +02:00
LICENSE.FDL Add missing license files 2021-12-02 12:45:33 +01:00
LICENSE.GPL3 Added LICENSE.GPL3 2016-01-12 15:38:16 +00:00
LICENSE.GPL3-EXCEPT Add missing license files 2021-12-02 12:45:33 +01:00
README Updated README and changes file 2016-11-23 09:37:28 +00:00
conanfile.py Conan: Inherit recipe class from QtLeafModule for common functionality 2021-08-26 08:06:26 +03:00
dependencies.yaml Update dependencies on 'dev' in qt/qtdatavis3d 2022-05-11 15:57:32 +00:00
sync.profile Modernize and update to latest CMake API 2021-06-11 10:24:41 +02:00

README

---------------------------
Qt Data Visualization 5.9.0
---------------------------

Qt Data Visualization module provides multiple graph types to visualize data in 3D space
both with C++ and Qt Quick 2.

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

- Qt 5.2.1 or newer
- OpenGL 2.1 or newer (recommended) or OpenGL ES2 (reduced feature set)
- Manipulating Qt Data Visualization 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 (qtdatavisualization.qch) and in HTML format
(qtdatavisualization subfolder) documentation is generated.

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

Known Issues
============

- Some platforms like Android and WinRT cannot handle multiple native windows properly,
  so only the Qt Quick 2 versions of graphs are available in practice for those platforms.
- Shadows are not supported with OpenGL ES2 (including Angle builds in Windows).
- Anti-aliasing doesn't work with OpenGL ES2 (including Angle builds in Windows).
- QCustom3DVolume items are not supported with OpenGL ES2 (including Angle builds in Windows).
- Surfaces with non-straight rows and columns do not always render properly.
- Widget based examples layout incorrectly in iOS.
- Reparenting a graph to an item in another QQuickWindow is not supported.
- Android builds of QML applications importing QtDataVisualization also require
  "QT += datavisualization" in the pro file. This is because Qt Data Visualization QML plugin has
  a dependency to Qt Data Visualization C++ library, which Qt Creator doesn't automatically add
  to the deployment package.
- Only OpenGL ES2 emulation is available for software renderer (that is, when using
  QCoreApplication::setAttribute(Qt::AA_UseSoftwareOpenGL))