Set the (*x*, *y*) position of the text. Parameters ---------- xy : (float, float)
(self, xy)
| 1117 | self.stale = True |
| 1118 | |
| 1119 | def set_position(self, xy): |
| 1120 | """ |
| 1121 | Set the (*x*, *y*) position of the text. |
| 1122 | |
| 1123 | Parameters |
| 1124 | ---------- |
| 1125 | xy : (float, float) |
| 1126 | """ |
| 1127 | self.set_x(xy[0]) |
| 1128 | self.set_y(xy[1]) |
| 1129 | |
| 1130 | def set_x(self, x): |
| 1131 | """ |
no test coverage detected