Added angle parameter to DrawText

This commit is contained in:
MikeTheWatchGuy 2018-09-27 16:24:51 -04:00
parent ab98ea20eb
commit ce4b5b8a99
1 changed files with 3 additions and 2 deletions

View File

@ -1329,13 +1329,14 @@ class Graph(Element):
return None
return self._TKCanvas2.create_rectangle(converted_top_left[0], converted_top_left[1], converted_bottom_right[0], converted_bottom_right[1], fill=fill_color, outline=line_color)
def DrawText(self, text, location, color='black', font=None):
def DrawText(self, text, location, color='black', font=None, angle=0):
converted_point = self._convert_xy_to_canvas_xy(location[0], location[1])
if self._TKCanvas2 is None:
print('*** WARNING - The Graph element has not been finalized and cannot be drawn upon ***')
print('Call Window.Finalize() prior to this operation')
return None
return self._TKCanvas2.create_text(converted_point[0], converted_point[1], text=text, font=font, fill=color)
text_id = self._TKCanvas2.create_text(converted_point[0], converted_point[1], text=text, font=font, fill=color, angle=angle)
return text_id
def Erase(self):