Matplotlib - Interactive Features
What will happen if you run this code and move the mouse over the plot?
import matplotlib.pyplot as plt from matplotlib.widgets import Cursor fig, ax = plt.subplots() cursor = Cursor(ax, useblit=False, color='green', linewidth=2) plt.show()
