(self, mouseevent)
| 148 | ax.clear() |
| 149 | |
| 150 | def pick(self, mouseevent): |
| 151 | super().pick(mouseevent) |
| 152 | # Also pass pick events on to parasite axes and, in turn, their |
| 153 | # children (cf. ParasiteAxesBase.pick) |
| 154 | for a in self.parasites: |
| 155 | a.pick(mouseevent) |
| 156 | |
| 157 | def twinx(self, axes_class=None): |
| 158 | """ |
no outgoing calls