Return the lower and upper x-axis bounds, in increasing order. See Also -------- set_xbound get_xlim, set_xlim invert_xaxis, xaxis_inverted
(self)
| 3801 | """)) |
| 3802 | |
| 3803 | def get_xbound(self): |
| 3804 | """ |
| 3805 | Return the lower and upper x-axis bounds, in increasing order. |
| 3806 | |
| 3807 | See Also |
| 3808 | -------- |
| 3809 | set_xbound |
| 3810 | get_xlim, set_xlim |
| 3811 | invert_xaxis, xaxis_inverted |
| 3812 | """ |
| 3813 | left, right = self.get_xlim() |
| 3814 | if left < right: |
| 3815 | return left, right |
| 3816 | else: |
| 3817 | return right, left |
| 3818 | |
| 3819 | def set_xbound(self, lower=None, upper=None): |
| 3820 | """ |