例如,如果鼠标点击条形图上的条形,如何触发事件 具有以下条形图
import matplotlib.pyplot as plt; plt.rcdefaults()
import numpy as np
import matplotlib.pyplot as plt
Figure,Graph = plt.subplots()
y_pos = np.arange(len(objects))
performance = [10,8,6,4,2,1]
Graprh=plt.bar(y_pos, performance, align='center', alpha=0.5)
plt.xticks(y_pos, objects)
当鼠标悬停在特定栏上时如何触发鼠标悬停事件以及如何在回调函数上获得该栏