Hi,
I have one of the column value coming from the database is 12,356,212. I wanted this column value to be formatted in the grid as $12.356MM.
Can some help me how to apply the FormatString attribute value in xaml to the get the above format?
Thanks in advance.
You can apply a FormatString, using the FormatString property on a TextColumn:
For a list of FormatStrings check out this link:http://msdn.microsoft.com/en-us/library/dwhawy9k(v=VS.95).aspx
To apply a FormatString in xaml, prefix your FormatString with {}
So, it would look like:<ig:TextColum Key="Yourprop" FormatString="{}{0:C}"/>
-SteveZ