Added savefig function to PropsPlot

Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
Ian Bell
2014-08-19 21:15:18 +02:00
parent 9dc60b2ee8
commit 47c3a49f78

View File

@@ -272,3 +272,6 @@ class BasePlot(object):
def show(self):
self._draw_graph()
matplotlib.pyplot.show()
def savefig(self, *args, **kwargs):
matplotlib.pyplot.savefig(*args, **kwargs)