@@ -717,7 +717,7 @@ def set_xbound(self, lower=None, upper=None, view_margin=None):
717
717
is not modified.
718
718
view_margin : float or None
719
719
The margin to apply to the bounds. If *None*, the margin is handled
720
- by `set_xlim`.
720
+ by `. set_xlim`.
721
721
722
722
See Also
723
723
--------
@@ -742,7 +742,7 @@ def set_ybound(self, lower=None, upper=None, view_margin=None):
742
742
is not modified.
743
743
view_margin : float or None
744
744
The margin to apply to the bounds. If *None*, the margin is handled
745
- by `set_ylim`.
745
+ by `. set_ylim`.
746
746
747
747
See Also
748
748
--------
@@ -767,7 +767,7 @@ def set_zbound(self, lower=None, upper=None, view_margin=None):
767
767
is not modified.
768
768
view_margin : float or None
769
769
The margin to apply to the bounds. If *None*, the margin is handled
770
- by `set_zlim`.
770
+ by `. set_zlim`.
771
771
772
772
See Also
773
773
--------
@@ -817,7 +817,7 @@ def set_xlim(self, left=None, right=None, *, emit=True, auto=False,
817
817
"""
818
818
Set 3D x limits.
819
819
820
- See `~.Axes.set_xlim ` for full documentation
820
+ See `._set_lim3d ` for full documentation
821
821
"""
822
822
return self ._set_lim3d (self .xaxis , left , right , emit = emit , auto = auto ,
823
823
view_margin = view_margin , axmin = xmin , axmax = xmax )
@@ -827,7 +827,7 @@ def set_ylim(self, bottom=None, top=None, *, emit=True, auto=False,
827
827
"""
828
828
Set 3D y limits.
829
829
830
- See `~.Axes.set_ylim ` for full documentation
830
+ See `._set_lim3d ` for full documentation
831
831
"""
832
832
return self ._set_lim3d (self .yaxis , bottom , top , emit = emit , auto = auto ,
833
833
view_margin = view_margin , axmin = ymin , axmax = ymax )
@@ -837,7 +837,7 @@ def set_zlim(self, bottom=None, top=None, *, emit=True, auto=False,
837
837
"""
838
838
Set 3D z limits.
839
839
840
- See `~.Axes.set_ylim ` for full documentation
840
+ See `._set_lim3d ` for full documentation
841
841
"""
842
842
return self ._set_lim3d (self .zaxis , bottom , top , emit = emit , auto = auto ,
843
843
view_margin = view_margin , axmin = zmin , axmax = zmax )
0 commit comments