我无法清除GUI中使用twinx()的Graph

时间:2019-05-28 03:07:12

标签: python-3.x matplotlib tkinter-canvas

当我在GUI中进行绘图之前重新绘图时,我将清除图形,但第二个y轴无法清除原因?

ax1 = self.fig2.add_subplot(1,3,1)
ax1.clear()
ax1.set_xlabel('Density')
ax1.set_ylabel('Vs')

ax2 = ax1.twinx()
ax2.clear()
ax2.set_ylabel('Vp')

ax1.plot(D1,Vs1, marker='o')
ax2.plot(D1,Vp1, marker='o')

self.fig2.tight_layout()
self.canvas2.draw()

GUI中的我的图形

0 个答案:

没有答案