by kraada » Sun Dec 22, 2013 9:16 am
You can't set a minimum sample size per se but what you can do is go into the Configure -> Statistics window and change the color of the stat when the sample is insufficient so it appears invisible -- just make it back when its sample is too small. To do this, look at the Value Expression on the Definition tab -- take note of the value in the denominator of your fraction. For example for VPIP it's:
(cnt_vpip / (cnt_hands - cnt_walks)) * 100
So in this case we care about the "cnt_hands - cnt_walks" bit. For many stats it will just be one column, VPIP just happens to use two.
Go to the Columns page and you're going to add a new color expression that reads:
(cnt_hands - cnt_walks) < 10
And leave it black and tick the HUD box and click Save. Now if you have a sample of less than 10 you won't see the VPIP value in the HUD (because it'll appear black). If you change your background color you'd want to pick something other than black though.
You can't change the color of the prefix separately from that of the stat at this time.
The separators are configured in the Group Properties area in the top center of the Hud Editor. It's called "Separator" and you can change it to whatever you want (or remove it by just backspacing it out).