GanttColumnBuilder<T>.MinWidth(Double) Method
Specifies the minimum width of the column. Mirrors the client-side minWidth object.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public GanttColumnBuilder<T> MinWidth(
double value
)
Parameters
Name | Type | Description |
---|---|---|
value | Double | The width. |
Returns
Type | Description |
---|---|
GanttColumnBuilder<T> | A reference to this instance after the method is called. |
Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().Gantt()
.Columns(columns => {
columns.Add().MinWidth(50);
})
)
See Also