Skip to main content
All docs
V25.1
  • SummaryDisplayType Enum

    Lists values that specify how to display summary values calculated against a data field.

    Namespace: DevExpress.XtraReports.UI.CrossTab

    Assembly: DevExpress.XtraReports.v25.1.dll

    NuGet Package: DevExpress.Reporting.Core

    Declaration

    public enum SummaryDisplayType

    Members

    Name Description
    Default

    The calculated summary values “as is”.

    AbsoluteVariation

    The absolute variance between the current value and the previously calculated value for the current field.

    PercentVariation

    The percentage variance between the current value and the previously calculated value for the current field.

    PercentOfColumn

    For data cells, the percentage of the column’s total value; for total cells, the percentage of the column’s grand total value.

    PercentOfRow

    For data cells, the percentage of the row’s total value; for total cells, the percentage of the row’s grand total value.

    PercentOfColumnGrandTotal

    The percent of the summary in the Column Grand Total value.

    PercentOfRowGrandTotal

    The percent of the summary in the Row Grand Total value.

    PercentOfGrandTotal

    The percent of the summary in the Grand Total value.

    RankInColumnSmallestToLargest

    The summary value’s rank in its column, with the smallest value in the column as 1, and each larger value assigned a higher rank.

    RankInRowSmallestToLargest

    The summary value’s rank in its row, with the smallest value in the row as 1, and each larger value assigned a higher rank.

    RankInColumnLargestToSmallest

    The summary value’s rank in its column, with the largest value in the column as 1, and each smaller value assigned a higher rank.

    RankInRowLargestToSmallest

    The summary value’s rank in its row, with the largest value in the row as 1, and each smaller value assigned a higher rank.

    Index

    An index value that reflects the summary value’s importance in its row and column context. This value is calculated as follows:

    ((Cell Value) x (Grand Total of Grand Totals)) / ((Grand Row Total) x (Grand Column Total))

    Remarks

    The SummaryDisplayType enumeration’s values are used to set the CrossTabDataField.SummaryDisplayType property.

    See Also