I'm using jupyter-matplotlib to embed charts as widgets in a jupyter widgets based dashboard. However, I would like to disable the interactive tool bar and the figure title that automatically gets added.
As a simple example, the below creates an empty figure but it still has the interactive tool bar and Figure title.
%matplotlib widget
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
I would like to remove both the tool bar and figure title as well as anything else that is added padding around the plot, which I may not be able to see.