Changes Z-order of figures on the Graph. Brings the indicated figure to the front of all other drawn figures :param figure: value returned by tkinter when creating the figure / drawing :type figure: (int)
(self, figure)
| 6719 | self.TKCanvas.tag_lower(figure) # move figure to the "bottom" of all other figure |
| 6720 | |
| 6721 | def bring_figure_to_front(self, figure): |
| 6722 | """ |
| 6723 | Changes Z-order of figures on the Graph. Brings the indicated figure to the front of all other drawn figures |
| 6724 | |
| 6725 | :param figure: value returned by tkinter when creating the figure / drawing |
| 6726 | :type figure: (int) |
| 6727 | """ |
| 6728 | self.TKCanvas.tag_raise(figure) # move figure to the "top" of all other figures |
| 6729 | |
| 6730 | def get_figures_at_location(self, location): |
| 6731 | """ |