MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / NullLocator

Class NullLocator

lib/matplotlib/ticker.py:1883–1899  ·  view source on GitHub ↗

Place no ticks.

Source from the content-addressed store, hash-verified

1881
1882
1883class 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
1902class LinearLocator(Locator):

Callers 5

clearMethod · 0.90
clearMethod · 0.90

Calls

no outgoing calls

Tested by 1

Used in the wild real call sites across dependent graphs

searching dependent graphs…