Switch plotwidget default to svg.

This commit is contained in:
David Bau
2022-07-21 13:27:34 -04:00
parent 5423dc8245
commit 07aea7ba81
+1 -1
View File
@@ -27,7 +27,7 @@ class PlotWidget(Img):
import matplotlib, matplotlib.pyplot
super().__init__()
init_args = dict(kwargs)
self.render_args = dict()
self.render_args = dict(format='svg') # Looks better; use as default.
if rc is None:
rc = {}