aspnet-devexpress-dot-web-dot-aspxgantt-dot-gantttasklistsettings-fcbe1b27.md
Specifies the task list’s width.
Namespace : DevExpress.Web.ASPxGantt
Assembly : DevExpress.Web.ASPxGantt.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(typeof(Unit), "")]
public Unit Width { get; set; }
<DefaultValue(GetType(Unit), "")>
Public Property Width As Unit
| Type | Default | Description |
|---|---|---|
| Unit | String.Empty |
The task list’s width.
|
You can access this nested property as listed below:
| Library | Object Type | Path to Width |
|---|---|---|
| ASP.NET MVC Extensions | GanttSettings |
.SettingsTaskList .Width
| | ASP.NET Web Forms Controls | ASPxGantt |
.SettingsTaskList .Width
|
Use the Width property to specify the task list’s width.
<dx:ASPxGantt ID="Gantt" runat="server" ... >
<SettingsTasksList Width="45%" >
//...
</SettingsTasksList>
</dx:ASPxGantt>
See Also