I am trying to format a summary in webdatagrid with commas.
ie: total sales: 12345.6719 as 12,345.67
Gary
Hello Gary,
Please let me know if you have any further questions regarding this matter.
You can format the value of the summary row using the formatstring property like below:
<ig:SummaryRow FormatString="{0} = {1:##,#.00}">
<ColumnSummaries>
<ig:ColumnSummaryInfo ColumnKey="UnitPrice">
<Summaries>
<ig:Summary SummaryType="Sum" />
</Summaries>
</ig:ColumnSummaryInfo>
</ColumnSummaries>
</ig:SummaryRow>