Changes Z-order of figures on the Graph. Sends the indicated figure to the back of all other drawn figures :param figure: value returned by tkinter when creating the figure / drawing :type figure: (int)
(self, figure)
| 6710 | self._TKCanvas2.move(figure, shift_converted[0] - xy[0], shift_converted[1] - xy[1]) |
| 6711 | |
| 6712 | def send_figure_to_back(self, figure): |
| 6713 | """ |
| 6714 | Changes Z-order of figures on the Graph. Sends the indicated figure to the back of all other drawn figures |
| 6715 | |
| 6716 | :param figure: value returned by tkinter when creating the figure / drawing |
| 6717 | :type figure: (int) |
| 6718 | """ |
| 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 | """ |