Check if any of the tick group components are visible. Takes in self._major_tick_kw or self._minor_tick_kw.
(kw)
| 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 | """ |