Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 matplotlib 中有一个按钮,即
myButton = Button(axpos, 'This is a button')
如何使按钮内的文本变小?
要更改 matplotlib 文本的字体大小,请使用text.set_fontsize(12). 要获取按钮的文本,请使用myButton.label.
text.set_fontsize(12)
myButton.label
将两者结合起来:
myButton.label.set_fontsize(12)
使用这个:myButton.label.set_fontsize('smaller')或者你可以放入你想要的特定尺寸:myButton.label.set_fontsize(10)
myButton.label.set_fontsize('smaller')
myButton.label.set_fontsize(10)