wpf-devexpress-dot-xpf-dot-pivotgrid-3767197a.md
Lists the values used to specify which interface elements should be taken into account when calculating the optimal width for columns or rows.
Namespace : DevExpress.Xpf.PivotGrid
Assembly : DevExpress.Xpf.PivotGrid.v25.2.dll
NuGet Package : DevExpress.Wpf.PivotGrid
[Flags]
public enum FieldBestFitArea
<Flags>
Public Enum FieldBestFitArea
| Name | Description |
|---|---|
None |
The best-fit functionality is disabled.
|
| FieldValue |
The contents of field values are taken into account when calculating the best-fit size.
|
| FieldHeader |
The contents of field headers are taken into account when calculating the best-fit size.
|
| Cell |
The contents of data cells are taken into account when calculating the best-fit size.
|
| All |
The contents of data cells, field headers and field values are taken into account when calculating the best-fit size.
|
The following properties accept/return FieldBestFitArea values:
The values listed by this enumeration are used to set the PivotGridField.BestFitArea and PivotGridControl.BestFitArea properties.
See Also