DxPivotTableField.ShowInHiddenFieldList Property
Specify whether to display the field in Hidden Fields section of the Field List.
Namespace: DevExpress.Blazor.PivotTable
Assembly: DevExpress.Blazor.PivotTable.v25.1.dll
NuGet Package: DevExpress.Blazor.PivotTable
Declaration
[Parameter]
public bool ShowInHiddenFieldList { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
|
Remarks
The following code sets the Region field’s Visible and ShowInHiddenFieldList
properties to false
. That means this hidden field is not displayed in the Hidden Fields list.
<DxPivotTable Data="SalesData">
<Fields>
<DxPivotTableField Field="@nameof(Sales.SaleInfo.Region)"
Area="@PivotTableArea.Row"
AreaIndex="0"
Visible="false"
ShowInHiddenFieldList="false"/>
@*...*@
</Fields>
</DxPivotTable>
Implements
See Also