What would be the correct format to display numeric/decimal column values with comma separaters? If the value is zero, there should be only 1 zero. If there's a decimal, it should display 2 decimal, if not, not, none. Single digits shouldn't have a zero infront of it.
Thank you.
Hi,
The grid just passes the Format into the ToString method of the cell's value. So the formats are not Infragistics-specific, they are part of the DotNet framework and are documented by Microsoft.
Here are some links to the Microsoft documentation for numeric formats:
Standard Numeric Format Strings
Custom Numeric Format Strings
Hey, thanks.
I actually had thougt that initially, but I had set it incorrectly. For example, I had set it as "0:C2", instead of "C2".