diff --git a/isimip_qa/plots/yearly.py b/isimip_qa/plots/yearly.py index af5b58c..d6937da 100644 --- a/isimip_qa/plots/yearly.py +++ b/isimip_qa/plots/yearly.py @@ -45,7 +45,7 @@ def create(self): ax.step(sp.df.index, sp.df[sp.var], where='mid', label=sp.label, color=sp.color, linestyle=sp.linestyle, zorder=sp.zorder) ax.fill_between(sp.df.index, sp.df[sp.var] - sp.df['std'], sp.df[sp.var] + sp.df['std'], - step='mid', alpha=0.3, color=sp.color) + step='mid', alpha=0.1, color=sp.color) if sp.label: ax.legend(loc='best').set_zorder(20)