diff --git a/holoviews/plotting/mpl/plot.py b/holoviews/plotting/mpl/plot.py index f45facf306..bdf9c441c6 100644 --- a/holoviews/plotting/mpl/plot.py +++ b/holoviews/plotting/mpl/plot.py @@ -230,7 +230,7 @@ def anim(self, start=0, stop=None, fps=30): Method to return a matplotlib animation. The start and stop frames may be specified as well as the fps. """ - figure = self.initialize_plot() + figure = self.state or self.initialize_plot() anim = animation.FuncAnimation(figure, self.update_frame, frames=self.keys, interval = 1000.0/fps)