From 07aea7ba81826e53e0ac6b1ba1778793fa4b2c9f Mon Sep 17 00:00:00 2001 From: David Bau Date: Thu, 21 Jul 2022 13:27:34 -0400 Subject: [PATCH] Switch plotwidget default to svg. --- baukit/plotwidget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/baukit/plotwidget.py b/baukit/plotwidget.py index 9c29983..c0470ce 100644 --- a/baukit/plotwidget.py +++ b/baukit/plotwidget.py @@ -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 = {}