Simplified question: For some reason the plot isn't updating when I hit my generate plots button.
global f
master = Tk()
plotFrame = Frame(master)
plotFrame.pack(side=TOP)
f = Figure()
canvas = FigureCanvasTkAgg(f, plotFrame)
canvas.get_tk_widget().pack()
toolbar = NavigationToolbar2TkAgg(canvas,master)
toolbar.pack(side=BOTTOM)
def grph():
graph1 = f.add_subplot(111)
graph1.plot([1,2,3])
genButton = Button(master, text="Generate plots...", command=grph)
genButton.pack(side=LEFT,anchor=W)
master.mainloop()
xandy, then define your callback to accept them as arguments (def my_callback(x, y): ...). Then when you attach the callback to your button use lambda to bind those variables like so:my_button.config(lambda x=x, y=y: my_callback(x, y))– Steven Rumbalski Nov 5 '10 at 14:55