Skip to main content

SummaryItemBase.ShowInColumn Property

Gets or sets the summary item’s position within the total summary panel (for total summaries) or group row (for group summaries). This is a dependency property.

Namespace: DevExpress.UI.Xaml.Grid

Assembly: DevExpress.UI.Xaml.Grid.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

[XtraSerializableProperty]
public string ShowInColumn { get; set; }

Property Value

Type Description
String

A String value that specifies the column’s field name.

Remarks

There are two summary types:

  • Total Summary

    A total summary calculates an aggregate function by all rows and displays the result in a column’s footer cells. The ShowInColumn property allows you to specify the column in whose footer the total summary should be displayed. If this property isn’t specified, the total summary is displayed within the column that is bound to the same field in a data source as the summary item.

  • Group Summary

    A group summary represents a value of the aggregate function calculated over all data rows within a group. If the grid’s GridControl.GroupSummaryDisplayMode property is set to GroupSummaryDisplayMode.AlignByColumns, group summaries are displayed within corresponding columns in a group row. In this instance, the ShowInColumn property specifies the group summary item’s position within a group row.

win-rt-grid-data-summaries

See Also