matplotlib 关闭事件

matplotlib 关闭事件#

示例展示了如何连接在图形关闭时发生的事件。

%matplotlib inline
import matplotlib.pyplot as plt


def on_close(event):
    print('Closed Figure!')

fig = plt.figure()
fig.canvas.mpl_connect('close_event', on_close)

plt.text(0.35, 0.5, 'Close Me!', dict(size=30))
plt.show()
../../../_images/129efc5b67ebfebb0c87735767cf510bcb216e3391c2ec8b0e34b690019b6d90.png

备注

这个示例展示了 Matplotlib 的交互功能,这在静态文档中将不会显示。请在您的计算机上运行此代码以查看交互性。