簡體   English   中英

Tkinter AttributeError: 'AxesSubplot' object has no attribute 'canvas' and matplotlib graphs don't update until I resize the tkinter window

[英]Tkinter AttributeError: 'AxesSubplot' object has no attribute 'canvas' and matplotlib graphs don't update until I resize the tkinter window

Matplotlib 圖上 tkinter canvas 給出錯誤 - 'AxesSubplot' ZA8CFDE6331BD59EB2AC966F8911Cvas'4B 屬性沒有

# Create window
window = tkinter.Tk()
window.resizable()
window.state('zoomed')


# Create Title
window.title('Title')


# adding frame of buttons
BFrame = tkinter.Frame(window)
BFrame.pack(side=tkinter.TOP)    

# This defines the Python GUI backend to use for matplotlib
matplotlib.use('TkAgg')

# Initialize matplotlib figure for graphing purposes
fig = Figure(figsize=(5,3), dpi = 100)

global sbpt_1, sbpt_2, sbpt_3

sbpt_1 = fig.add_subplot(1, 3, 1)
sbpt_2 = fig.add_subplot(1, 3, 2)
sbpt_3 = fig.add_subplot(1, 3, 3)


#Rotating x-ticks
sbpt_1.tick_params(axis='x', rotation=45)
sbpt_2.tick_params(axis='x', rotation=45)
sbpt_3.tick_params(axis='x', rotation=45)


#Subplot Titles
sbpt_1.title.set_text('Title A \n')
sbpt_2.title.set_text('Title B \n')
sbpt_3.title.set_text('Title C \n')
fig.suptitle('VISUALIZE FILES')


# Tight layout often produces nice results
# but requires the title to be spaced accordingly
fig.tight_layout()
fig.subplots_adjust(top=0.82)


# Special type of "canvas" to allow for matplotlib graphing
display = FigureCanvasTkAgg(fig, master=window)
display.draw()
display.get_tk_widget().pack(side=TOP, fill=BOTH, expand=1)

#Navigator
toolbar = NavigationToolbar2Tk(display, window)
toolbar.update()
display._tkcanvas.pack(side=BOTTOM, fill=BOTH, expand=1)

.................

def plot_utm():
    content.plot (color = '#3BB9FF', ax = sbpt_1)
    sbpt_1.canvas.draw()
    
def plot_tm():
    shp_TM.plot(color = '#4CC417', ax = sbpt_2)
    sbpt_2.canvas.draw()
    
def plot_om():  
    shp_TMOM.plot(color = '#FFA62F', ax = sbpt_3)
    sbpt_3.canvas.draw()

.........

# To make the window running
window.mainloop()

出現此錯誤。:
出現此錯誤。

Plot on Tkinter Canvas 即使在單擊可視化按鈕后:
即使在單擊可視化按鈕后也可以在 Tkinter Canvas 上繪圖

完整代碼的這些行存在問題。 如果我運行此代碼,則會出現錯誤 - 'AxesSubplot' object 沒有屬性 'canvas' 並且在單擊可視化按鈕后,canvas 上不會出現繪圖,但是如果我調整 Z05B8C742CBD96FBF2DEZC1A35 按鈕的大小,則 plotF 將使用最小化/maxim55出現。

通過更新函數解決的問題

def plot_utm():
    sbpt_1 = fig.add_subplot(1, 3, 1) 
    content.plot (color = '#3BB9FF', ax = sbpt_1)
    display.draw_idle()
    
def plot_tm():
    sbpt_2 = fig.add_subplot(1, 3, 2)
    shp_TM.plot(color = '#4CC417', ax = sbpt_2)
    display.draw_idle()
    
def plot_om():
    sbpt_3 = fig.add_subplot(1, 3, 3)
    shp_TMOM.plot(color = '#FFA62F', ax = sbpt_3)
    display.draw_idle()

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM