How do i get rid of the label name in the group header? I have formatted the summary definition using the string format property but it keeps adding the column label name to it, I don't want the column label name in the description.
I think that you might have a chance by using an "invisible" column as summary source with an label which contains only a space and setting its max width to zero:
<igDP:Field Label=" " Name="SomeValue"> <igDP:Field.Settings> <igDP:FieldSettings CellMaxWidth="0"/> </igDP:Field.Settings></igDP:Field>
I developed only this way to display the summary definition without displaying the column. If you set the columns visibility to "Collapsed" the summary is not shown. If you set the Label to String.Empty the Grid will use the Name as display.