SetStatFormat() does not work for Entries?

It seems like SetStatFormat() in TBrowser does not apply on Entries. Is there any other way how to make number of entries in StatBox display fully (e.g. 32248205 instead of 3.22482e+07)? Thank you.

Nope this cannot be changed. There code to decide on the format for entries is:

      if (fH->GetEntries() < 1e7) tt.Form("%s = %-7d",gStringEntries.Data(),Int_t(fH->GetEntries()+0.5));
      else                        tt.Form("%s = %14.7g",gStringEntries.Data(),Float_t(fH->GetEntries()));

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.