Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
How to create a progress bar in arc shape in QML?
-
Is it possible to create a progress bar in arc shape in QML.
-
Probably you have to implement this in C++, and then register with QML.
As an example look at the pie chart example:
http://doc.qt.digia.com/4.7-snapshot/declarative-tutorials-extending-chapter1-basics.htmlIn QML there is also a PathCubic element, which might do:
http://doc.qt.digia.com/4.7-snapshot/declarative-tutorials-extending-chapter1-basics.htmlAlso with Qt5 and QtQuick 2.0 comes a canvas element.
-
Thanks mate...
Its all going bit tricky in that front :)