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