Pyqtgraph plotwidget:无法将轴刻度的字体粗细更改为 BOLD
Posted
技术标签:
【中文标题】Pyqtgraph plotwidget:无法将轴刻度的字体粗细更改为 BOLD【英文标题】:Pyqtgraph plotwidget: cannot change font weight of axis ticks to BOLD 【发布时间】:2020-10-19 21:06:01 【问题描述】:如何使 x 轴刻度加粗?
plot_1 = pg.PlotWidget()
plot_1.setBackground('w')
pen = pg.mkPen(color="k", width=3, style=QtCore.Qt.SolidLine)
plot_1 .setTitle("Title", color="k", size="18pt")
plot_1 .plot(xvals, yvals, pen=pen)
styles = 'color': 'r', 'font-size': '12px', 'font-weight': 'bold'
plot_1 .setLabel('bottom', 'X label', **styles)
【问题讨论】:
【参考方案1】:您必须使用setTickFont()
方法将字体设置为轴:
fn = QtGui.QFont()
# fn.setPointSize(20)
fn.setBold(True)
plot_1.getAxis("bottom").setTickFont(fn)
【讨论】:
谢谢,它有效。虽然不知道为什么没有剧情线那么粗但是比以前好多了。以上是关于Pyqtgraph plotwidget:无法将轴刻度的字体粗细更改为 BOLD的主要内容,如果未能解决你的问题,请参考以下文章
PyQt4 中的 QThreading PyQtGraph PlotWidgets
如何在pyqtgraph PlotWidget中添加字符串轴
如何使用 pyqtgraph 的 GLViewWidget 将轴特征(标签、刻度、值)添加到 3D 图中?
PyQtGraph PlotWidget:如何强制每次绘制(更改范围)以进行“实时”绘图