From 972270377ed07bd349b822c3da0ff862f477af00 Mon Sep 17 00:00:00 2001 From: Alexei Ciobanu Date: Fri, 20 Mar 2020 13:20:43 +1030 Subject: [PATCH] Setting the background colour to white in default.mplstyle explicitely. The background for the area outside the axes window was previously transparrent. This makes it white. --- pykat/style/default.mplstyle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pykat/style/default.mplstyle b/pykat/style/default.mplstyle index 86c1f1e..21d11a8 100644 --- a/pykat/style/default.mplstyle +++ b/pykat/style/default.mplstyle @@ -17,6 +17,8 @@ axes.formatter.use_locale : False axes.prop_cycle : cycler('color', ['b', 'r', 'k', 'g', 'c', 'm', 'y']) axes.axisbelow : True axes.xmargin : 0 +axes.facecolor: (1, 1, 1, 1) +axes.edgecolor: (0, 0, 0, 1) #TICKS xtick.labelsize : 9 @@ -31,6 +33,8 @@ grid.linewidth : 0.25 figure.titlesize : 12 figure.figsize : 6, 3.708 figure.dpi : 96 +figure.facecolor: (1, 1, 1, 1) +figure.edgecolor: (1, 1, 1, 0) # LINES lines.linewidth : 1.2 -- GitLab