Qt系列像素化图表

Qt系列像素化图表,qt,qml,Qt,Qml,我正在尝试在pyQt图表中创建以下图像: 这就是我得到的(问题是由于像素化造成的感知质量低下): 这是我的密码: ChartView { anchors.left: parent.left anchors.top: parent.top backgroundColor: Styles.colorTransparent legend.labelColor: Styles.overviewLabelText wid

我正在尝试在pyQt图表中创建以下图像:

这就是我得到的(问题是由于像素化造成的感知质量低下):

这是我的密码:

ChartView {
        anchors.left: parent.left
        anchors.top: parent.top
        backgroundColor: Styles.colorTransparent
        legend.labelColor: Styles.overviewLabelText

        width: 400//411
        height: 400//250
        legend.alignment: Qt.AlignRight

        PieSeries {
            id: pieSeries
            holeSize: 0.52
            PieSlice { label: "0-35"; value: 5 ; color: Styles.age0_35_plot ; borderWidth: 5 ; borderColor : "#0c3564"}//; borderWidth: 0 ; borderColor : Styles.colorTransparent}
            PieSlice { label: "35-45"; value: 15 ; color: Styles.age35_45_plot ; borderWidth: 5 ; borderColor : "#0c3564"}// ; borderWidth: 0 ; borderColor : Styles.colorTransparent}
            PieSlice { label: "45-55"; value: 15 ; color: Styles.age45_55_plot ; borderWidth: 5 ; borderColor : "#0c3564"}// ; borderWidth: 0 ; borderColor : Styles.colorTransparent}
            PieSlice { label: "55-65"; value: 15 ; color: Styles.age55_65_plot ; borderWidth: 5 ; borderColor : "#0c3564"}// ; borderWidth: 0 ; borderColor : Styles.colorTransparent}
            PieSlice { label: "65-75"; value: 20 ; color: Styles.age65_75_plot ; borderWidth: 5 ; borderColor : "#0c3564"}// ; borderWidth: 0 ; borderColor : Styles.colorTransparent}
            PieSlice { label: "+75"; value: 30 ; color: Styles.age_over75_plot ; borderWidth: 5 ; borderColor : "#0c3564"}// ; borderWidth: 0 ; borderColor : Styles.colorTransparent}
        }
    }
这能补救吗