PivotGridControl.AllowFilterPanelNavigation Property
Gets or sets whether users can move focus between PivotGridControl cells and the Filter Panel. This is a dependency property.
Namespace: DevExpress.Xpf.PivotGrid
Assembly: DevExpress.Xpf.PivotGrid.v26.1.dll
Declaration
Property Value
| Type | Default | Description |
|---|---|---|
| Boolean | false |
|
Remarks
The following code example enables the AllowFilterPanelNavigation property to allow users to navigate between PivotGridControl cells and the Filter Panel using shortcuts:
<dxpg:PivotGridControl
AllowFilterPanelNavigation="True">
<dxpg:PivotGridControl.Fields>
<dxpg:PivotGridField FieldName="Country" Area="RowArea" AreaIndex="0"/>
<dxpg:PivotGridField FieldName="Name" Area="RowArea" AreaIndex="1"/>
...
</dxpg:PivotGridControl.Fields>
</dxpg:PivotGridControl>
Refer to the following help topic for more information: Filter Panel Keyboard Actions.
See Also