diff --git a/docs/pyerrors/correlators.html b/docs/pyerrors/correlators.html index cef7fac9..2cfd37dc 100644 --- a/docs/pyerrors/correlators.html +++ b/docs/pyerrors/correlators.html @@ -1060,7 +1060,7 @@ 846 847 if save: 848 if isinstance(save, str): - 849 fig.savefig(save) + 849 fig.savefig(save, bbox_inches='tight') 850 else: 851 raise Exception("'save' has to be a string.") 852 @@ -2321,7 +2321,7 @@ 847 848 if save: 849 if isinstance(save, str): - 850 fig.savefig(save) + 850 fig.savefig(save, bbox_inches='tight') 851 else: 852 raise Exception("'save' has to be a string.") 853 @@ -4130,7 +4130,7 @@ apply gamma_method with default parameters to the Corr. Defaults to None 847 848 if save: 849 if isinstance(save, str): -850 fig.savefig(save) +850 fig.savefig(save, bbox_inches='tight') 851 else: 852 raise Exception("'save' has to be a string.")