I want to show my graph fullscreen.
import numpy as np
import matplotlib.pyplot as plt
plt.rcParams['toolbar'] = 'None'
fig = plt.figure(frameon=False)
plt.show()
Shortcut 'f' works fine and I managed to get rid of the toolbar using rcParams. Is there an (easy) way to remove the status bar at the bottom of the figure, where the mouse position is displayed?
I'm grateful for any advice.