Place no ticks.
| 1881 | |
| 1882 | |
| 1883 | class NullLocator(Locator): |
| 1884 | """ |
| 1885 | Place no ticks. |
| 1886 | """ |
| 1887 | |
| 1888 | def __call__(self): |
| 1889 | return self.tick_values(None, None) |
| 1890 | |
| 1891 | def tick_values(self, vmin, vmax): |
| 1892 | """ |
| 1893 | Return the locations of the ticks. |
| 1894 | |
| 1895 | .. note:: |
| 1896 | |
| 1897 | Because there are no ticks, *vmin* and *vmax* are not used. |
| 1898 | """ |
| 1899 | return [] |
| 1900 | |
| 1901 | |
| 1902 | class LinearLocator(Locator): |
no outgoing calls
searching dependent graphs…