QProgressBar chunk
-
Hello,
in QWidget world you can use setRange(min,max) slot to achieve this. In case of QML desktop components you can use minimumValue and maximumValue properties.
Cheers
ps: QML related questions should be asked in QtQuick subcategory of this forum.
-
hm..
It's QProgressbar stylesheet
@QProgressBar::chunk { background: red }@ -- set all chunk red
I need set first and last chunk different ... i try:
@QProgressBar::chunk:first { background: green }
QProgressBar::chunk:last { background: blue }@but it does not work
how can i do this