点击获取节点上的Matplotlib

时间:2013-05-02 13:02:25

标签: python colors matplotlib

我想更改点击的节点上的颜色

def button_press_callback(event):
   print event.x

这是我添加到图中的事件:

    wm.canvas.mpl_connect('button_press_event', button_press_callback)

我想检测点击的节点并更改该节点的颜色。

当我尝试从事件对象获取ind属性时,抛出异常:

 ind = event.ind[0]
 AttributeError: MouseEvent instance has no attribute 'ind'

但在所有例子中,我都看到其他用户可以获得ind属性。

0 个答案:

没有答案