Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions lib/matplotlib/axes/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1175,6 +1175,15 @@ def set_position(self, pos, which='both'):
which : {'both', 'active', 'original'}, default: 'both'
Determines which position variables to change.

.. note::
This parameter is considered internal. End users should not use it.

For native Matplotlib `.Axes`, the active position is
determined by a combination of the original position and the
aspect ratio. Any active position set by the user will therefore be
overwritten by internal handling. This option is retained as it may be
relevant for some third party `.Axes` subclasses.
Comment thread
rcomer marked this conversation as resolved.

See Also
--------
matplotlib.transforms.Bbox.from_bounds
Expand Down
Loading