Setting precision for fit statistics box

I’m trying to increase the precision shown in the fit statistics box when creating a plot. Currently it prints a fit parameter value as 4.023 but I want it to print 4.0228. Thanks.

Use TStyle::SetFitFormat(const char* format="%5.4g"), eg

gStyle->SetFitFormat("%7.5g");
Rene