Skip to main content
All docs
V25.1
  • 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

    true to display the field in the Hidden Fields list; false to hide the field.

    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>
    
    See Also