微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在 QtChart 中更改 QPieSlice 的标签大小

如何解决如何在 QtChart 中更改 QPieSlice 的标签大小

我尝试使用 slice.setLabelFont(font) 但它不起作用, 我在下面附上了我的代码

class MainWindow(QtWidgets.QMainWindow):
    def __init__(self,*args,**kwargs):
        super(MainWindow,self).__init__(*args,**kwargs)

        #Load the UI Page
        THIS_FOLDER = os.path.dirname(os.path.abspath(__file__))
        my_file = os.path.join(THIS_FOLDER,'main.ui')
        uic.loadUi(my_file,self)

        # changing the background color to cyan
        self.setStyleSheet("background-color: #363636;")
  
        # set the title
        self.setwindowTitle("Screen Time")

        # self.graphWidget = pg.PlotWidget()
        # self.setCentralWidget(self.graphWidget)

        font=QtGui.QFont()
        font.setPixelSize(20)
        font.setPointSize(20)
        

        series = QtChart.QPieSeries()
        series.setHoleSize(0.5)
        series.append("Example1 40%",40.0)
        
      
        slice = QtChart.QPieSlice()

        slice.setLabelFont(font)

        slice = series.append("Example1 30%",30.0)
        slice.setLabelVisible()
        
        series.append("Example1 30%",30.0)

        chart = QtChart.QChart()
        
        chart.addSeries(series)
        chart.setTitleFont(font)
        chart.setTitle('usage time')
        
        chart.setAnimationoptions(QtChart.QChart.SeriesAnimations)
        chart.setTheme(QtChart.QChart.ChartThemeDark)
        #chart.animation

        chart.setBackgroundBrush(QtGui.QBrush(QtGui.QColor("transparent")))
        chart.legend().setVisible(True)
        chartview = QtChart.QChartView(chart)
        chartview.setRenderHint(QtGui.QPainter.Antialiasing)

        self.chart_container.setStyleSheet("background-color: #363636;")

        self.chart_container.setContentsMargins(0,0)
        lay = QtWidgets.QHBoxLayout(self.chart_container)
        lay.setContentsMargins(0,0)
        lay.addWidget(chartview)

enter image description here

解决方法

有两个问题。首先,您在从未添加到 QPieSeries 的 QPieSlice 上调用 setLabelFont

slice = QtChart.QPieSlice() # this is never added to the series
slice.setLabelFont(font)

slice = series.append("Example1 30%",30.0) # creates and returns a new pie slice
slice.setLabelVisible()

其次,将图表主题设置为QChart.ChartThemeDark会将字体改回默认值,因此必须在 QPieSlice 标签字体之前设置。如docs中所述:

更改主题将覆盖之前应用于该系列的所有自定义设置。

class MainWindow(QtWidgets.QMainWindow):
    def __init__(self,*args,**kwargs):
        super(MainWindow,self).__init__(*args,**kwargs)

        #Load the UI Page
        THIS_FOLDER = os.path.dirname(os.path.abspath(__file__))
        my_file = os.path.join(THIS_FOLDER,'main.ui')
        uic.loadUi(my_file,self)
        self.setStyleSheet("background-color: #363636;")
        self.setWindowTitle("Screen Time")

        chart = QtChart.QChart()
        chart.setTheme(QtChart.QChart.ChartThemeDark)

        font=QtGui.QFont()
        font.setPixelSize(20)
        font.setPointSize(20)
        
        series = QtChart.QPieSeries()
        series.setHoleSize(0.5)
        series.append("Example1 40%",40.0)
        
        slice = series.append("Example1 30%",30.0)
        slice.setLabelVisible()
        slice.setLabelFont(font)
        
        series.append("Example1 30%",30.0)
        chart.addSeries(series)
        
        chart.setTitleFont(font)
        chart.setTitle('usage time')
        chart.setAnimationOptions(QtChart.QChart.SeriesAnimations)
        chart.setBackgroundBrush(QtGui.QBrush(QtGui.QColor("transparent")))
        chart.legend().setVisible(True)
        chartview = QtChart.QChartView(chart)
        chartview.setRenderHint(QtGui.QPainter.Antialiasing)

        self.chart_container.setStyleSheet("background-color: #363636;")

        self.chart_container.setContentsMargins(0,0)
        lay = QtWidgets.QHBoxLayout(self.chart_container)
        lay.setContentsMargins(0,0)
        lay.addWidget(chartview)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。