This is a fork from the original QtQuickPlotscene. The goal of this fork is to try and cater to real-time plotting
QtQuickPlotScene is a collection of QtQuick items for data visualization in Qt6.
NOTE: This project is a work-in-progress continuation of QmlPlotting. Some functionality is still missing and requires porting from Qt5 to Qt6.
QtQuickPlotScene is based on Qt 6.2 and uses CMake for building. For applications built with CMake you can fetch and add the library to your build process..
# Fetch and include QtQuickPlotScene
include(FetchContent)
FetchContent_Declare(qtquickplotscene
GIT_TAG master # <- Ideally this should be a specific tag, not a branch
GIT_REPOSITORY https://github.com/pwuertz/QtQuickPlotScene.git
SOURCE_SUBDIR "QtQuickPlotScene"
)
FetchContent_MakeAvailable(qtquickplotscene)
.. and add the library to your application(s) dependencies
target_link_libraries(application PRIVATE QtQuickPlotScene::QtQuickPlotScene)
A documentation of the API does not exist yet. Until then the example application serves as a reference for using QtQuickPlotScene in other applications.
QtQuickPlotScene is available under the MIT license.