I am drawing a graph in python using Matplotlib library. I want to remove the whole toolbar from the graph. which look like this.
i have been trying alot but not able to figure out the way to do it. kindly direct me to the File/code and suggest me the modifications to be carried out.
You can disable the tool bar via rcParams
. Either add (or uncomment) the line
toolbar: None
in your matplotlibrc
file or dynamically,
rcParams['toolbar'] = 'None'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With