add offline plotting for plotly

This commit is contained in:
Alex Feldstein 2017-02-22 16:28:37 -05:00
parent e74a31c482
commit 977aee2b47
4 changed files with 25 additions and 9 deletions

View file

@ -92,7 +92,7 @@ class MatplotlibPlots(AbstractPlottingLibrary):
if title is not None: ax.figure.suptitle(title)
return ax
def show_canvas(self, ax):
def show_canvas(self, ax, **kwargs):
ax.figure.canvas.draw()
return ax.figure