matplotlib.pyplot.disconnect#
- matplotlib.pyplot.disconnect(cid)[source]#
Disconnect the callback with idcid.
Notes
Note
This is thepyplot wrapper for
FigureCanvasBase.mpl_disconnect
.Examples
cid=canvas.mpl_connect('button_press_event',on_press)# ... latercanvas.mpl_disconnect(cid)
Examples usingmatplotlib.pyplot.disconnect
#
On this page