import QtQuick 1.0 Rectangle { color:"#00000000" border.color: "black" width: 20 height: 100 property bool horiz:false property real val:0 property real max:100 Rectangle { color:"green" anchors.left: parent.left anchors.bottom: parent.bottom height:parent.height*(!horiz?val/max:1) width: parent.width*(horiz?val/max:1) } }