How do I get rid of the summary labels such "Sum = 99,544" and just show the sum only as in "99,544"
Hello Patt9443,
You can use the format string that is available on summary row column settings and summary settings. By default it is {0} = {1}, where {0} is the summary name and {1} is the value. Just define it to be {1} like below to show only value <ig:SummaryRow> <ColumnSettings> <ig:SummaryRowSetting ColumnKey="ProductName" FormatString=" {1}"> </ig:SummaryRowSetting> </ColumnSettings> </ig:SummaryRow> Please let me know if you have any questions regarding this matter.
Sincerely,Prabha
I get the error:
Type 'Infragistics.Web.UI.GridControls.ColumnSummaryInfo' does not have a public property named 'FormatString'.
I am using Infragistics4.Web.v13.2
Attached sample demonstrates how you can set the formatstring for the summary row for "Department" column.
Please let me know if you have any further questions regarding this matter.