File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -555,8 +555,10 @@ def set_constrained_layout_pads(self, **kwargs):
555
555
Set padding for ``constrained_layout``. Note the kwargs can be passed
556
556
as a dictionary ``fig.set_constrained_layout(**paddict)``.
557
557
558
- Parameters:
559
- -----------
558
+ See :doc:`/tutorials/intermediate/constrainedlayout_guide`
559
+
560
+ Parameters
561
+ ----------
560
562
561
563
w_pad : scalar
562
564
Width padding in inches. This is the pad around axes
@@ -574,7 +576,6 @@ def set_constrained_layout_pads(self, **kwargs):
574
576
Height padding between subplots, expressed as a fraction of the
575
577
subplot width. The total padding ends up being h_pad + hspace.
576
578
577
- See :doc:`/tutorials/intermediate/constrainedlayout_guide`
578
579
"""
579
580
580
581
todo = ['w_pad' , 'h_pad' , 'wspace' , 'hspace' ]
@@ -592,13 +593,13 @@ def get_constrained_layout_pads(self, relative=False):
592
593
Returns a list of `w_pad, h_pad` in inches and
593
594
`wspace` and `hspace` as fractions of the subplot.
594
595
595
- Parameter:
596
- -----------
596
+ See :doc:`/tutorials/intermediate/constrainedlayout_guide`
597
+
598
+ Parameters
599
+ ----------
597
600
598
601
relative : boolean
599
602
If `True`, then convert from inches to figure relative.
600
-
601
- See: :doc:`/tutorials/intermediate/constrainedlayout_guide`
602
603
"""
603
604
w_pad = self ._constrained_layout_pads ['w_pad' ]
604
605
h_pad = self ._constrained_layout_pads ['h_pad' ]
You can’t perform that action at this time.
0 commit comments