As you know in matplotlib plot, it shows a value for x and a value for y while hovering the mouse on plots (the red border in the picture below).
Is there any way to hide them and make plt not to show them at all? So the figure does not show the values after mouse hovers on plot.
# just a simple code
import matplotlib.pyplot as plt
x = [1, 2, 3, 4]
y = [1, 2, 3, 4]
plt.plot(x, y)
plt.show()
