(self, nth_coord, value, axis_direction="bottom")
| 450 | return self.get_grid_helper().new_fixed_axis(loc, offset=offset, axes=self) |
| 451 | |
| 452 | def new_floating_axis(self, nth_coord, value, axis_direction="bottom"): |
| 453 | return self.get_grid_helper().new_floating_axis( |
| 454 | nth_coord, value, axis_direction=axis_direction, axes=self) |
| 455 | |
| 456 | |
| 457 | class AxesZero(Axes): |