YvZheng / pycwr

The China Weather Radar Toolkit, support most of China's radar formats(WSR98D, CINRAD/SA/SB/CB, CINRAD/CC/CCJ, CINRAD/SC/CD)
MIT License
213 stars 80 forks source link

How to remove the legend and border? #29

Closed afunnyrainman closed 5 months ago

afunnyrainman commented 3 years ago

How to remove the legend and border?

pysoer commented 3 years ago

ax.spines['right'].set_visible(False) ax.spines['top'].set_visible(False) ax.spines['left'].set_visible(False) ax.spines['bottom'].set_visible(False) ax.set_xticks([]) ax.set_yticks([])

afunnyrainman commented 3 years ago

谢谢,think you .