wolfrevo
wolfrevo

Reputation: 7303

Increase inner padding/margins in matplotlib

How to increase/modify the inner margin/padding (the ones maked with red arrows).

The green ones can be increased with subplots_adjust().

Is there a way to change the inner ones (red)?

enter image description here

Upvotes: 4

Views: 1854

Answers (1)

Ajean
Ajean

Reputation: 5659

Change the distance between the source and the observer:

ax.dist = 15 # default is 10

Upvotes: 6

Related Questions