ChartView オブジェクトに Rectangle オブジェクト以外の余白があるのはなぜですか? それらを同じにする方法は?たとえば、ChartView オブジェクトを Rectangle に置き換えると、余白は同じになります。
import QtQuick 2.7
import QtQuick.Controls 2.2
import QtCharts 2.2
Rectangle {
anchors.fill: parent
color: "#eeeeee"
Rectangle {
id: idRectConsole1
width: 200
anchors.top: parent.top
anchors.left: parent.left
anchors.bottom: parent.bottom
anchors.margins: 20
color: "#ffffff"
}
ChartView {
anchors.top: parent.top
anchors.left: idRectConsole1.right
anchors.right: parent.right
anchors.bottom: parent.bottom
anchors.margins: 20
legend.visible: false
LineSeries {
name: "1"
XYPoint { x: 2; y: 0.73278}
XYPoint { x: 4; y: 1.2213}
XYPoint { x: 6; y: -0.73278}
}
}
}