When using following code in PythonQt, the plotting window has no interaction, for example, zooming, save figures:
import matplotlib.pyplot as plt
plt.ion()
plt.plot([1,2,3], [1,2,1])
plt.draw()
I even could not close the plotting window with clicking the 'close button' on the title bar.