'Change the color of inner circle in the polar plot in matplotlib

I am making a polar plot and this is the output of my code

enter image description here

Everything is working fine, I just need to know how can I change the edgecolor of the inner-most circle (which is black in the image)



Solution 1:[1]

Use this:

ax.spines['inner'].set_color('w')

there are 4 border line in polar axis:

  • polar
  • start
  • end
  • inner

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Mohammadreza