Return whether the given event (in display coords) is in the Axes.
(self, mouseevent)
| 2764 | for axis_name, data in datasets] |
| 2765 | |
| 2766 | def in_axes(self, mouseevent): |
| 2767 | """ |
| 2768 | Return whether the given event (in display coords) is in the Axes. |
| 2769 | """ |
| 2770 | return self.patch.contains(mouseevent)[0] |
| 2771 | |
| 2772 | get_autoscalex_on = _axis_method_wrapper("xaxis", "_get_autoscale_on") |
| 2773 | get_autoscaley_on = _axis_method_wrapper("yaxis", "_get_autoscale_on") |
no test coverage detected