MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / axes

Method axes

lib/matplotlib/figure.py:2814–2825  ·  view source on GitHub ↗

List of Axes in the Figure. You can access and modify the Axes in the Figure through this list. Do not modify the list itself. Instead, use `~Figure.add_axes`, `~.Figure.add_subplot` or `~.Figure.delaxes` to add or remove an Axes. Note: The `.Figure.axes` p

(self)

Source from the content-addressed store, hash-verified

2812
2813 @property
2814 def axes(self):
2815 """
2816 List of Axes in the Figure. You can access and modify the Axes in the
2817 Figure through this list.
2818
2819 Do not modify the list itself. Instead, use `~Figure.add_axes`,
2820 `~.Figure.add_subplot` or `~.Figure.delaxes` to add or remove an Axes.
2821
2822 Note: The `.Figure.axes` property and `~.Figure.get_axes` method are
2823 equivalent.
2824 """
2825 return self._axstack.as_list()
2826
2827 get_axes = axes.fget
2828

Calls 1

as_listMethod · 0.80