DataGridSummaryGroupItemBuilder<T>.AlignByColumn(Boolean) Method
In This Article
Indicates whether to display group summary items in parentheses after the group row header or to align them by the corresponding columns within the group row. Mirrors the client-side alignByColumn option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public DataGridSummaryGroupItemBuilder<T> AlignByColumn(
bool value
)
#Parameters
Name | Type | Description |
---|---|---|
value | Boolean | The option value. |
#Returns
Type | Description |
---|---|
Data |
A reference to this instance after the method is called. |
#Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().DataGrid()
.Summary(summary => summary
.GroupItems(groupItems => {
groupItems.Add().AlignByColumn(true);
})
)
)
See Also