Set the `.SubplotSpec`. associated with the subplot.
(self, subplotspec)
| 844 | return self._subplotspec |
| 845 | |
| 846 | def set_subplotspec(self, subplotspec): |
| 847 | """Set the `.SubplotSpec`. associated with the subplot.""" |
| 848 | self._subplotspec = subplotspec |
| 849 | self._set_position(subplotspec.get_position(self.get_figure(root=False))) |
| 850 | |
| 851 | def get_gridspec(self): |
| 852 | """Return the `.GridSpec` associated with the subplot, or None.""" |
no test coverage detected