Set the *x* position of the text. Parameters ---------- x : float
(self, x)
| 1365 | self.set_y(xy[1]) |
| 1366 | |
| 1367 | def set_x(self, x): |
| 1368 | """ |
| 1369 | Set the *x* position of the text. |
| 1370 | |
| 1371 | Parameters |
| 1372 | ---------- |
| 1373 | x : float |
| 1374 | """ |
| 1375 | self._x = x |
| 1376 | self.stale = True |
| 1377 | |
| 1378 | def set_y(self, y): |
| 1379 | """ |
no outgoing calls
no test coverage detected