Set the locator of the minor ticker. Parameters ---------- locator : `~matplotlib.ticker.Locator`
(self, locator)
| 2136 | self.stale = True |
| 2137 | |
| 2138 | def set_minor_locator(self, locator): |
| 2139 | """ |
| 2140 | Set the locator of the minor ticker. |
| 2141 | |
| 2142 | Parameters |
| 2143 | ---------- |
| 2144 | locator : `~matplotlib.ticker.Locator` |
| 2145 | """ |
| 2146 | _api.check_isinstance(mticker.Locator, locator=locator) |
| 2147 | self.isDefault_minloc = False |
| 2148 | self.minor.locator = locator |
| 2149 | if self.minor.formatter: |
| 2150 | self.minor.formatter._set_locator(locator) |
| 2151 | locator.set_axis(self) |
| 2152 | self.stale = True |
| 2153 | |
| 2154 | def set_pickradius(self, pickradius): |
| 2155 | """ |