@@ -2540,27 +2540,21 @@ def in_axes(self, mouseevent):
25402540 return self .patch .contains (mouseevent )[0 ]
25412541
25422542 def get_autoscale_on (self ):
2543- """
2544- Get whether autoscaling is applied for both axes on plot commands
2545- """
2543+ """Return True if each axis is autoscaled, False otherwise."""
25462544 return self ._autoscaleXon and self ._autoscaleYon
25472545
25482546 def get_autoscalex_on (self ):
2549- """
2550- Get whether autoscaling for the x-axis is applied on plot commands
2551- """
2547+ """Return whether the x-axis is autoscaled."""
25522548 return self ._autoscaleXon
25532549
25542550 def get_autoscaley_on (self ):
2555- """
2556- Get whether autoscaling for the y-axis is applied on plot commands
2557- """
2551+ """Return whether the y-axis is autoscaled."""
25582552 return self ._autoscaleYon
25592553
25602554 def set_autoscale_on (self , b ):
25612555 """
2562- Set whether autoscaling is applied to axes on the next draw or call to
2563- `.Axes.autoscale_view`.
2556+ Set whether autoscaling is applied to each axis on the next draw or
2557+ call to `.Axes.autoscale_view`.
25642558
25652559 Parameters
25662560 ----------
@@ -2571,8 +2565,8 @@ def set_autoscale_on(self, b):
25712565
25722566 def set_autoscalex_on (self , b ):
25732567 """
2574- Set whether autoscaling for the x-axis is applied to axes on the next
2575- draw or call to `.Axes.autoscale_view`.
2568+ Set whether the x-axis is autoscaled on the next draw or call to
2569+ `.Axes.autoscale_view`.
25762570
25772571 Parameters
25782572 ----------
@@ -2582,8 +2576,8 @@ def set_autoscalex_on(self, b):
25822576
25832577 def set_autoscaley_on (self , b ):
25842578 """
2585- Set whether autoscaling for the y-axis is applied to axes on the next
2586- draw or call to `.Axes.autoscale_view`.
2579+ Set whether the y-axis is autoscaled on the next draw or call to
2580+ `.Axes.autoscale_view`.
25872581
25882582 Parameters
25892583 ----------
0 commit comments