Qml Interactive Gantt Library
Unsolved
Showcase
-
Hello everyone,
I'm sharing an efficient implementation of a gantt library for qml for anyone interested. I'm using a custom element called RangeView as a substitute for the QtQuick Repeater. The element lazy-loads items according to its view-port, making the library handle large amounts of items ( > 1 000 000) with no significant drops in fps. The element can work for other scroll-based content where size is important. (e.g. Timelines)
You can find the code, documentation and a sample project here:
https://github.com/dinusv/qml-ganttCheers!
-
Awesome, thank you!