GanttColumnBase.MinWidth Property
Specifies the column’s minimum width.
Namespace: DevExpress.Web.ASPxGantt
Assembly: DevExpress.Web.ASPxGantt.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
Int32 | 0 | The minimum width. |
Remarks
Use the MinWidth property to specify the minimum width of an individual column.
<dx:ASPxGantt ID="Gantt" runat="server" ... >
// ...
<SettingsTaskList Width="45%">
<Columns>
<dx:TaskDataColumn TaskField="Title" MinWidth="160" />
// ...
</Columns>
</SettingsTaskList>
</dx:ASPxGantt>
To specify the minimum width for all columns in the task list, use the ColumnMinWidth property.
<dx:ASPxGantt ID="Gantt" runat="server" ... >
// ...
<SettingsTaskList ColumnMinWidth="50" />
</dx:ASPxGantt>
Examples
Online Demos
See Also