Set the *x* position of the text. Parameters ---------- x : float
(self, x)
| 1128 | self.set_y(xy[1]) |
| 1129 | |
| 1130 | def set_x(self, x): |
| 1131 | """ |
| 1132 | Set the *x* position of the text. |
| 1133 | |
| 1134 | Parameters |
| 1135 | ---------- |
| 1136 | x : float |
| 1137 | """ |
| 1138 | self._x = x |
| 1139 | self.stale = True |
| 1140 | |
| 1141 | def set_y(self, y): |
| 1142 | """ |
no outgoing calls
no test coverage detected