Problem in progressbar
Moved
Unsolved
QML and Qt Quick
-
Hi
I am trying to make a progressbar situated inside a rectangular button in vertical orientation and i am setting value of progress bar to 0.8
import QtQuick 2.9 import QtQuick.Window 2.2 import QtQuick.Controls 1.4 import QtGraphicalEffects 1.0 Window { visible: true width: 640 height: 480 title: qsTr("Hello World") color:"black" Rectangle { height:100 width:100 color:"gray" anchors.centerIn: parent ProgressBar { orientation: Qt.vertical value:0.8 height:100 width:10 } } }
////////
the progress bar is not raising upto 0.8 level and I am getting a line at 0.8 level
How can I solve this problem?
-
Yes it is a issue. Try to use the ProgressBar from import QtQuick.Controls 2.4. I have not check it.
-
Yes it is a issue. Try to use the ProgressBar from import QtQuick.Controls 2.4. I have not check it.
@dheerendra ok Sir