Skip to main content
All docs
V25.1
  • DxPivotTableField.Visible Property

    Specifies whether the Pivot Table field is visible.

    Namespace: DevExpress.Blazor.PivotTable

    Assembly: DevExpress.Blazor.PivotTable.v25.1.dll

    NuGet Package: DevExpress.Blazor.PivotTable

    Declaration

    [DefaultValue(true)]
    [Parameter]
    public bool Visible { get; set; }

    Property Value

    Type Default Description
    Boolean true

    true if the field is visible; otherwise, false.

    Remarks

    The following code hides the Region field from the Pivot Table layout. However, users can view this field in the Hidden Fields section of the Field List.

    <DxPivotTable Data="SalesData">
        <Fields>
            <DxPivotTableField Field="@nameof(Sales.SaleInfo.Region)"
                               Area="@PivotTableArea.Row"
                               AreaIndex="0"
                               Visible="false" />
            @*...*@
        </Fields>
    </DxPivotTable>
    

    Pivot Table - Hidden Fields

    Implements

    See Also