Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PivotGridField.ExpandValue(Object) Method

Expands the column/row that contains the specified value.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v24.2.dll

NuGet Package: DevExpress.Wpf.PivotGrid

#Declaration

public void ExpandValue(
    object value
)

#Parameters

Name Type Description
value Object

An object which specifies the value in the grouping column/row that should be expanded.

#Remarks

When the current field is placed within the Column Header Area the ExpandValue method expands the grouping column which corresponds to the current field that contains the specified value.

When the field is placed within the Row Header Area the ExpandValue method expands the grouping row that contains the specified value.

To expand all grouping rows/columns which correspond to the current field use the PivotGridField.ExpandAll method.

Grouping rows/columns which correspond to a field can be collapsed and expanded by end-users if the field’s PivotGridField.AllowExpand property is set to true.

See Also