Skip to main content

Custom Summary

  • 2 minutes to read

Total summaries and Group summaries provide five predefined aggregate functions. These functions allow you to calculate:

  • the number of data rows (Count)
  • the maximum and minimum values (MAX and MIN)
  • the sum and the average value (SUM and AVG).

If you want to calculate summaries using custom rules, handle the GridControl.CustomSummary event. This event enables you to implement custom aggregate functions or calculate summary values, using a custom algorithm. Custom summaries allow you to:

  • Calculate summaries against records that meet specific criteria
  • Involve multiple data fields in calculations
  • Implement complex summary functions (e.g. the standard deviation of a population), etc.

#General Information

To calculate a summary manually:

The GridControl.CustomSummary event fires for each data row involved in summary calculation. When calculating a total summary value, the event is raised for each data row. When calculating a group summary value, this event fires for each data row within a group. To enable you to perform any initialization and finalization, the event is also raised before and after processing rows.

The summary calculation consists of three stages.

  • Initialization

    The CustomSummary event is raised once and the CustomSummaryEventArgs.SummaryProcess property is set to CustomSummaryProcess.Start. At this stage, you can initialize summary values (e.g. reset internal counters).

  • Calculation

    The CustomSummary event occurs multiple times, once for each data row in a View or group. The SummaryProcess property is set to CustomSummaryProcess.Calculate. At this stage, you should accumulate summaries.

  • Finalization

    The CustomSummary event is raised once and the SummaryProcess property is set to CustomSummaryProcess.Finalize. At this point, calculate a final summary value and assign it to the event parameter's CustomSummaryEventArgs.TotalValue property.

To skip the Calculation stage and calculate a custom summary at the Initialization or Finalization stage, set the event parameter's CustomSummaryEventArgs.TotalValueReady property to true at the Initialization stage. This automatically skips the Calculation stage and the Finalization stage starts immediately.

#Example