Draw the :class:`TextWithDash` object to the given *renderer*.
(self, renderer)
| 1408 | return tuple(props) |
| 1409 | |
| 1410 | def draw(self, renderer): |
| 1411 | """ |
| 1412 | Draw the :class:`TextWithDash` object to the given *renderer*. |
| 1413 | """ |
| 1414 | self.update_coords(renderer) |
| 1415 | Text.draw(self, renderer) |
| 1416 | if self.get_dashlength() > 0.0: |
| 1417 | self.dashline.draw(renderer) |
| 1418 | self.stale = False |
| 1419 | |
| 1420 | def update_coords(self, renderer): |
| 1421 | """ |
nothing calls this directly
no test coverage detected