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

Method __init__

lib/mpl_toolkits/axisartist/axislines.py:368–372  ·  view source on GitHub ↗
(self, *args, grid_helper=None, **kwargs)

Source from the content-addressed store, hash-verified

366class Axes(maxes.Axes):
367
368 def __init__(self, *args, grid_helper=None, **kwargs):
369 self._axisline_on = True
370 self._grid_helper = grid_helper if grid_helper else GridHelperRectlinear(self)
371 super().__init__(*args, **kwargs)
372 self.toggle_axisline(True)
373
374 def toggle_axisline(self, b=None):
375 if b is None:

Callers 6

__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45

Calls 2

toggle_axislineMethod · 0.95

Tested by

no test coverage detected