dashboard-devexpress-dot-dashboardcommon-d11de2f5.md
Lists values that specify the mode used to manage the width of individual columns.
Namespace : DevExpress.DashboardCommon
Assembly : DevExpress.Dashboard.v25.2.Core.dll
NuGet Package : DevExpress.Dashboard.Core
public enum GridColumnFixedWidthType
Public Enum GridColumnFixedWidthType
| Name | Description |
|---|---|
Weight |
The column has the fixed relative width. Use the GridColumnBase.Weight property to specify the column relative width.
|
| FitToContent |
The column has the fixed width required to completely display its content.
|
| FixedWidth |
The column has a fixed width. Use the GridColumnBase.FixedWidth property to specify the fixed column width.
|
The following properties accept/return GridColumnFixedWidthType values:
Values listed in this enumeration are used to set the GridColumnBase.WidthType property.
To specify the width of individual columns manually, set the GridOptions.ColumnWidthMode property to GridColumnWidthMode.Manual.
See Also