(self, axis)
| 413 | base = property(lambda self: self._transform.base) |
| 414 | |
| 415 | def set_default_locators_and_formatters(self, axis): |
| 416 | # docstring inherited |
| 417 | axis.set_major_locator(LogLocator(self.base)) |
| 418 | axis.set_major_formatter(LogFormatterSciNotation(self.base)) |
| 419 | axis.set_minor_locator(LogLocator(self.base, self.subs)) |
| 420 | axis.set_minor_formatter( |
| 421 | LogFormatterSciNotation(self.base, |
| 422 | labelOnlyBase=(self.subs is not None))) |
| 423 | |
| 424 | def get_transform(self): |
| 425 | """Return the `.LogTransform` associated with this scale.""" |
no test coverage detected