MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / send_figure_to_back

Method send_figure_to_back

PySimpleGUI/PySimpleGUI.py:6712–6719  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 """

Callers 4

mainFunction · 0.95
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected