Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/343.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 如何更改QtChart中QPieSlice的标签大小_Python_Python 3.x_Pyqt_Pyqt5_Pyqtchart - Fatal编程技术网

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

Python 如何更改QtChart中QPieSlice的标签大小,python,python-3.x,pyqt,pyqt5,pyqtchart,Python,Python 3.x,Pyqt,Pyqt5,Pyqtchart,我尝试使用slice.setLabelFont(字体),但它不起作用, 我在下面附上了我的代码 class MainWindow(QtWidgets.QMainWindow): def __init__(self, *args, **kwargs): super(MainWindow, self).__init__(*args, **kwargs) #Load the UI Page THIS_FOLDER = os.path.dirna

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

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, 0, 0)
        lay = QtWidgets.QHBoxLayout(self.chart_container)
        lay.setContentsMargins(0, 0, 0, 0)
        lay.addWidget(chartview)

有两个问题。首先,您在从未添加到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标签字体之前进行设置。如报告中所述:

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


好的,谢谢,我来测试一下
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, 0, 0)
        lay = QtWidgets.QHBoxLayout(self.chart_container)
        lay.setContentsMargins(0, 0, 0, 0)
        lay.addWidget(chartview)