Returns the integer position of the given tick label.
(self, value)
| 166 | return self._labels |
| 167 | |
| 168 | def index(self, value): |
| 169 | """Returns the integer position of the given tick label.""" |
| 170 | if self._index is None: |
| 171 | raise ValueError('Axis does not have tick labels') |
| 172 | return self._index[value] |
| 173 | |
| 174 | |
| 175 | # tc class for anything that can be coerced into an Axis |
no outgoing calls
no test coverage detected