Is there a way to display blank instead of zero values for percents?
This is displayed currently:
This is the desired display:
Xaml formatted like this currently:
<telerik:GridViewDataColumn DataMemberBinding="{Binding pPromoDiscountPct, StringFormat='{}{0:P2}'}" Header="Promo Discount %">
I tried several variations of StringFormat but end up with either just a % or nothing at all. Thanks for your help.
My Friend can you try this
<telerik:GridViewDataColumn DataMemberBinding="{Binding pPromoDiscountPct, StringFormat='{}{0:#%;#%;}'}" Header="Promo Discount %">
What does it mean {0:PositiveFormate;NegativeFormate;ZeroFormat} Hope it will help you. I kept empty in zero section.