Note

Go to the endto download the full example code.

Keypress event#

Show how to connect to keypress events.

Note

This example exercises the interactive capabilities of Matplotlib, and thiswill not appear in the static documentation. Please run this code on yourmachine to see the interactivity.

You can copy and paste individual parts, or download the entire exampleusing the link at the bottom of the page.

Press a key
importsysimportmatplotlib.pyplotaspltimportnumpyasnpdefon_press(event):print('press',event.key)sys.stdout.flush()ifevent.key=='x':visible=xl.get_visible()xl.set_visible(notvisible)fig.canvas.draw()# Fixing random state for reproducibilitynp.random.seed(19680801)fig,ax=plt.subplots()fig.canvas.mpl_connect('key_press_event',on_press)ax.plot(np.random.rand(12),np.random.rand(12),'go')xl=ax.set_xlabel('easy come, easy go')ax.set_title('Press a key')plt.show()

Gallery generated by Sphinx-Gallery