Python:点击时更改matplotlib按钮的标签

时间:2014-05-16 23:07:29

标签: python button matplotlib label

如何在点击它时更改matplotlib按钮的标签?就像我有一个带有标签"之前"的matplotlib按钮,我想点击它并将标签更改为" After"。我该怎么做呢?我觉得我应该知道这一点,但我真的无法在网上或文档中找到任何内容。

1 个答案:

答案 0 :(得分:8)

假设此示例http://matplotlib.org/1.3.1/examples/widgets/buttons.html

bprev.label="A new Label!" #actually this doesnt work...

我只是通过查看文档(实际上只是瞥了一眼)来了解按钮,而不知道按钮http://matplotlib.org/1.3.1/api/widgets_api.html#Button

更多的实验让我

bprive.label.set_text("A new label") # works