-
-
Notifications
You must be signed in to change notification settings - Fork 8k
Closed
Labels
Description
Issue
suptitle doesn't replace the text if the figure is cleared with clf.
Work:
import pylab as plt
plt.figure()
plt.suptitle('KK')
plt.suptitle('HH')
Doesn't work:
import pylab as plt
plt.figure()
plt.suptitle('KK')
plt.clf()
plt.suptitle('KK')
plt.suptitle('HH')
Solution?
add self._suptitle = None
to figure.clf()
Thanks!!!
/Bror Jonsson