我有一个单独的绘图线程,包含matplotlib和multiprocesses。现在,如果我以交互方式放大窗口,autoscale_view()将不再起作用(使用autoscale()修复)。但是"家庭"工具箱中的按钮仍然无法工作:它似乎调用autoscale_view()并且不显示更新的视图,而是显示旧视图(放大时的点)。示例代码:
import matplotlib
matplotlib.use("qt4agg")
from matplotlib import pyplot as plt
import multiprocessing
def reset_view():
plt.get
xdata = []
ydata = []
temp = 0
test_ax = plt.gca()
test_line, = plt.plot(xdata, ydata)
plt.show(block=False)
for i in range(10):
temp = temp+1
xdata.append(temp)
ydata.append(temp)
test_line.set_data(xdata, ydata)
test_ax.relim()
test_ax.autoscale(tight= False)
plt.show(block=False)
plt.pause(2)
plot_thread = multiprocessing.Process(target = reset_view, args = ())
reset_view()
if __name__ == '__main__':
plot_thread.start()
在绘图过程中尝试放大,然后按下主页按钮。有没有办法让主页按钮使用autoscale()而不是autoscale_view()或重置&更新工具栏历史记录,以便它不会跳回旧视图?
P.s。:" Home" -button =重置原始视图
答案 0 :(得分:4)
我终于能够弄清楚了(尝试和错误):有一个更新工具栏的功能。这将更新工具栏历史记录并将home()函数设置为新视图。解决方案:
figure = plt.gcf() #Get current figure
toolbar = figure.canvas.toolbar #Get the toolbar handler
toolbar.update() #Update the toolbar memory
plt.show(block = False) #Show changes