【PyQt6】Python使用QtCharts画图修改背景色的问题
2022/7/1 1:21:05
本文主要是介绍【PyQt6】Python使用QtCharts画图修改背景色的问题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
问题
想在软件界面用PyQt6的QtChart新画一张饼图,自定义一个饼图类继承QChartView:
class PyPieChart(QChartView): def __init__( self, series, bg_visible=False, bg_color="#44475a" ): self.pie_series = QPieSeries() self.set_series(series) self.chart = QChart() self.chart.addSeries(self.pie_series) self.chart.legend().hide() # 设置不显示背景 self.chart.setBackgroundVisible(bg_visible) def set_series(self, series): # 先清空 for item in self.pie_series.slices(): self.pie_series.remove(item) # 再添加 for item in series: if isinstance(item, list): slice = QPieSlice(label=item[0], value=item[1]) else: slice = QPieSlice(label=item, value=0) self.pie_series.append(slice)
结果示例:
发现还是有白色的背景,然后讲代码改成:
# self.chart.setBackgroundVisible(bg_visible) self.chart.setBackgroundPen(QPen(QColor(bg_color)))
发现chart的背景其实就那么大,隐藏背景也是有作用的,只是不是所希望的那样。
解决
由于这个PyPieChart
继承了QChartView
,而QChartView
继承了QtWidgets.QGraphicsView
,因此尝试了修改图上一层widget
的背景:
# 设置不显示背景 self.chart.setBackgroundVisible(bg_visible) self.setStyleSheet("background-color: %s" % bg_color)
结果顺利满足需求:
这篇关于【PyQt6】Python使用QtCharts画图修改背景色的问题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程
- 2024-11-14Python编程基础入门