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
218
summary row labels
posted

How do I get rid of the summary labels such "Sum = 99,544" and just show the sum only as in "99,544"

Parents
No Data
Reply
  • 7499
    posted

    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

Children