qml中,怎么让text显示的文字竖立显示?

图片说明

Rectangle {
    id: root
    width: 800
    height: 480
    color: "yellow"
    Text {
        id: text
        anchors.centerIn: parent
        text: qsTr("温度(℃)")
        rotation: -90
    }

}

https://zhidao.baidu.com/question/394935330372450245.html