Back to Devexpress

Tutorial: Format Summary Text

windowsforms-114630-controls-and-libraries-data-grid-getting-started-walkthroughs-summaries-tutorial-format-summary-text.md

latest6.0 KB
Original Source

Tutorial: Format Summary Text

  • Jul 02, 2024
  • 3 minutes to read

This walkthrough is a transcript of the Format Summary Text video available on the DevExpress YouTube Channel.

In this tutorial, you will learn how to add custom text to summary values, what kind of value formatting is applied to summaries by default, how to change numeric value formatting using an example of a total summary, and how to change formatting for date-time values using an example of group summaries.

Starting Point

Start with a GridControl that has a footer enabled.

Add Custom Text to Summary Values

  • Run the application. The footer cell under the Product Name column now shows the total record count along with the specified text.

Format Numeric Total Summary Values

  • Open the Property grid displaying the OrderSum column settings.
  • Expand the GridColumn.SummaryItem property and set the summary type to SummaryItemType.Sum. The GridSummaryItem.DisplayFormat property is automatically changed. The created summary format string already contains custom text and the value placeholder additionally includes a format specifier - c2 – meaning currency formatting with two digits after the decimal point.

  • Set the format specifier to c0 to hide decimal digits.

To learn more about available numeric format specifiers, refer to the Standard Numeric Format Strings topic in MSDN.

Format Date-Time Group Summary Values

  • Run the application to see the result.

Example: How to Custom Format Summary Values

csharp
gridView.Columns["MyColumn"].SummaryItem.Format = new MyFormat();  

public class MyFormat : IFormatProvider, ICustomFormatter {  
    public string Format(string format, object arg, IFormatProvider formatProvider) {
        // Convert argument to a string.
        string result = arg.ToString();

        // Format the result as needed.
        // ...

        return result;  
    }  
    public object GetFormat(Type formatType) {  
        if (formatType == typeof(ICustomFormatter))  
            return this;  
        else  
            return null;  
    }  
}

Read the following topic for detailed information: IFormatProvider Interface.

See Also

Tutorial: Total Summaries

Tutorial: Group Summaries

Tutorial: Obtain Summary Values

Tutorial: Sort Group Rows by Summary Values

Tutorial: Custom Summary Functions

Summaries

Working with Total, Group, and Custom Summaries in Code

Format Cell Values