Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1250
GroupBy summary description.
posted

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.

Parents
No Data
Reply
  • 165
    Suggested Answer
    posted

    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.

     

Children
No Data