CrossTabFieldSortBySummaryInfo.SummaryType Property
Specifies the summary function used to calculate summary values which should define the order to display column or row field values.
Namespace: DevExpress.XtraReports.UI.CrossTab
Assembly:
DevExpress.XtraReports.v24.1.dll
NuGet Package:
DevExpress.Reporting.Core
Declaration
[DefaultValue(SummaryType.Sum)]
public virtual SummaryType SummaryType { get; set; }
<DefaultValue(SummaryType.Sum)>
Public Overridable Property SummaryType As SummaryType
Property Value
Type |
Default |
Description |
SummaryType |
Sum |
The summary function.
|
Available values:
Name |
Description |
Count
|
The number of values.
|
Sum
|
The sum of all the values.
|
Min
|
The smallest value.
|
Max
|
The largest value.
|
Average
|
The average of all the values.
|
StdDev
|
The standard deviation of all the values.
|
StdDevp
|
The standard population deviation of all the values.
|
Var
|
The amount of variance for all the values.
|
Varp
|
The population variance for all the values.
|
CountDistinct
|
The number of unique values.
|
Median
|
The middle value in an ordered list of values.
|
Mode
|
The value that appears most frequently.
|
Use the FieldName property to specify the field against which to calculate summary values.
See the CrossTabGroupFieldBase.SortBySummaryInfo property for more information.
See Also