(self, numticks=None)
| 179 | return ticks |
| 180 | |
| 181 | def get_minor_ticks(self, numticks=None): |
| 182 | ticks = super().get_minor_ticks(numticks) |
| 183 | for t in ticks: |
| 184 | for obj in [ |
| 185 | t.tick1line, t.tick2line, t.gridline, t.label1, t.label2]: |
| 186 | obj.set_transform(self.axes.transData) |
| 187 | return ticks |
| 188 | |
| 189 | def set_ticks_position(self, position): |
| 190 | """ |
no test coverage detected