(self, color)
| 136 | return self._axis.majorTicks[0].tick1line |
| 137 | |
| 138 | def set_color(self, color): |
| 139 | # docstring inherited |
| 140 | # Unlike the base Line2D.set_color, this also supports "auto". |
| 141 | if not cbook._str_equal(color, "auto"): |
| 142 | mcolors._check_color_like(color=color) |
| 143 | self._color = color |
| 144 | self.stale = True |
| 145 | |
| 146 | def get_color(self): |
| 147 | return self.get_attribute_from_ref_artist("color") |
no outgoing calls