diff --git a/docs/pyerrors/correlators.html b/docs/pyerrors/correlators.html index f1deecac..f5491168 100644 --- a/docs/pyerrors/correlators.html +++ b/docs/pyerrors/correlators.html @@ -1096,8 +1096,8 @@ 880 raise Exception("'references' must be a list of floating pint values.") 881 882 if self.prange: - 883 ax1.axvline(self.prange[0], 0, 1, ls='-', marker=',') - 884 ax1.axvline(self.prange[1], 0, 1, ls='-', marker=',') + 883 ax1.axvline(self.prange[0], 0, 1, ls='-', marker=',', color="black", zorder=0) + 884 ax1.axvline(self.prange[1], 0, 1, ls='-', marker=',', color="black", zorder=0) 885 886 if fit_res: 887 x_samples = np.arange(x_range[0], x_range[1] + 1, 0.05) @@ -2424,8 +2424,8 @@ 881 raise Exception("'references' must be a list of floating pint values.") 882 883 if self.prange: - 884 ax1.axvline(self.prange[0], 0, 1, ls='-', marker=',') - 885 ax1.axvline(self.prange[1], 0, 1, ls='-', marker=',') + 884 ax1.axvline(self.prange[0], 0, 1, ls='-', marker=',', color="black", zorder=0) + 885 ax1.axvline(self.prange[1], 0, 1, ls='-', marker=',', color="black", zorder=0) 886 887 if fit_res: 888 x_samples = np.arange(x_range[0], x_range[1] + 1, 0.05) @@ -4335,8 +4335,8 @@ apply gamma_method with default parameters to the Corr. Defaults to None 881 raise Exception("'references' must be a list of floating pint values.") 882 883 if self.prange: -884 ax1.axvline(self.prange[0], 0, 1, ls='-', marker=',') -885 ax1.axvline(self.prange[1], 0, 1, ls='-', marker=',') +884 ax1.axvline(self.prange[0], 0, 1, ls='-', marker=',', color="black", zorder=0) +885 ax1.axvline(self.prange[1], 0, 1, ls='-', marker=',', color="black", zorder=0) 886 887 if fit_res: 888 x_samples = np.arange(x_range[0], x_range[1] + 1, 0.05)