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

Method __call__

lib/matplotlib/ticker.py:1827–1830  ·  view source on GitHub ↗

Return the locations of the ticks

(self)

Source from the content-addressed store, hash-verified

1825 self.offset = offset
1826
1827 def __call__(self):
1828 """Return the locations of the ticks"""
1829 dmin, dmax = self.axis.get_data_interval()
1830 return self.tick_values(dmin, dmax)
1831
1832 def tick_values(self, vmin, vmax):
1833 # We want tick values in the closed interval [vmin, vmax].

Callers

nothing calls this directly

Calls 2

tick_valuesMethod · 0.95
get_data_intervalMethod · 0.45

Tested by

no test coverage detected