Register an axis. An axis should be registered with its corresponding spine from the Axes instance. This allows the spine to clear any axis properties when needed.
(self, axis)
| 207 | self.set_position(self._position) |
| 208 | |
| 209 | def register_axis(self, axis): |
| 210 | """ |
| 211 | Register an axis. |
| 212 | |
| 213 | An axis should be registered with its corresponding spine from |
| 214 | the Axes instance. This allows the spine to clear any axis |
| 215 | properties when needed. |
| 216 | """ |
| 217 | self.axis = axis |
| 218 | self.stale = True |
| 219 | |
| 220 | def clear(self): |
| 221 | """Clear the current spine.""" |
no outgoing calls