import matplotlib.pyplot as plt
from random import random
def onpick(event):
if event.artist == plt1:
print("Picked on top plot")
elif event.artist == plt2:
print("Picked on bottom plot")
first = [random()*i for i in range(10)]
second = [random()*i for i in range(10)]
fig = plt.figure(1)
plt1 = plt.subplot(211)
plt.plot(range(10), first)
plt2 = plt.subplot(212)
plt.plot(range(10), second)
plt1.set_picker(True)
plt2.set_picker(True)
fig.canvas.mpl_connect('pick_event', onpick)
plt.show()
1条答案
按热度按时间eqfvzcg81#
下面是一个简短的例子:
请注意,你必须在子图上调用
set_picker(True)
来触发这个事件!如果你不这样做,即使你在画布上设置了这个事件,也不会发生任何事情。对于进一步的阅读,这里是
PickEvent
文档和来自matplotlib站点的pick handling demo。