如何更改 matplotlib 按钮中的文本大小?
How to change the text size in a matplotlib Button?
我在 matplotlib 中有一个按钮,即
myButton = Button(axpos, 'This is a button')
如何缩小按钮内的文字?
要更改 matplotlib 文本的字体大小,请使用 text.set_fontsize(12)
。
要获取按钮的文本,请使用 myButton.label
.
结合两者:
myButton.label.set_fontsize(12)
使用这个:myButton.label.set_fontsize('smaller')
或者你可以输入你想要的特定尺寸:myButton.label.set_fontsize(10)
我在 matplotlib 中有一个按钮,即
myButton = Button(axpos, 'This is a button')
如何缩小按钮内的文字?
要更改 matplotlib 文本的字体大小,请使用 text.set_fontsize(12)
。
要获取按钮的文本,请使用 myButton.label
.
结合两者:
myButton.label.set_fontsize(12)
使用这个:myButton.label.set_fontsize('smaller')
或者你可以输入你想要的特定尺寸:myButton.label.set_fontsize(10)