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

Method _tick_group_visible

lib/matplotlib/axis.py:1324–1333  ·  view source on GitHub ↗

Check if any of the tick group components are visible. Takes in self._major_tick_kw or self._minor_tick_kw.

(kw)

Source from the content-addressed store, hash-verified

1322
1323 @staticmethod
1324 def _tick_group_visible(kw):
1325 """
1326 Check if any of the tick group components are visible.
1327 Takes in self._major_tick_kw or self._minor_tick_kw.
1328 """
1329 return (kw.get('tick1On') is not False or
1330 kw.get('tick2On') is not False or
1331 kw.get('label1On') is not False or
1332 kw.get('label2On') is not False or
1333 kw.get('gridOn') is not False)
1334
1335 def _update_ticks(self):
1336 """

Callers 1

_update_ticksMethod · 0.95

Calls 1

getMethod · 0.45

Tested by

no test coverage detected