Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Matplotlib 库在 python 中绘制图形。我想从图中删除整个工具栏。看起来像这样。
我一直在尝试很多,但无法弄清楚如何做到这一点。请引导我查看文件/代码并建议我进行修改。
您可以通过禁用工具栏rcParams。添加(或取消注释)该行
rcParams
toolbar: None
在您的matplotlibrc文件中或动态地,
matplotlibrc
rcParams['toolbar'] = 'None'