ChartView如何与xAxis边界对齐

时间:2019-01-22 15:16:47

标签: qt charts qml

我想使一个项目与ChartView的X轴边界对齐。 enter image description here

有可能吗,请给我提示如何做? 当前的解决方案看起来一点也不好:

         Rectangle {
            color : "darkgrey"
            anchors.top : parent.top
            x : itemPlot.x + 50
            width : parent.width - 50 - 20
            height : parent.height*0.6
         }

         ChartView {
            id : itemPlot

            anchors.bottom: parent.bottom
            anchors.left: parent.left
            width : parent.width
            height : parent.height*0.4


            legend.visible: false
            antialiasing: true
            margins.bottom : 0
            margins.top : 0
            margins.left : 0
            margins.right : 0
}

1 个答案:

答案 0 :(得分:0)

解决方案是使用plotArea的{​​{1}}属性:

ChartView