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)
| 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 |