Set the internal pad in points. The actual pad will be the sum of the internal pad and the external pad (the latter is set automatically by the `.AxisArtist`). Parameters ---------- pad : float The internal pad in points.
(self, pad)
| 314 | self.set_axis_direction(axis_direction) |
| 315 | |
| 316 | def set_pad(self, pad): |
| 317 | """ |
| 318 | Set the internal pad in points. |
| 319 | |
| 320 | The actual pad will be the sum of the internal pad and the |
| 321 | external pad (the latter is set automatically by the `.AxisArtist`). |
| 322 | |
| 323 | Parameters |
| 324 | ---------- |
| 325 | pad : float |
| 326 | The internal pad in points. |
| 327 | """ |
| 328 | self._pad = pad |
| 329 | |
| 330 | def get_pad(self): |
| 331 | """ |
no outgoing calls