GanttSettings.Images Property
In This Article
Provides access to the settings that define images in the Gantt’s elements.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.2.dll
NuGet Package: DevExpress.Web.Mvc5
#Declaration
public GanttImages Images { get; }
#Property Value
Type | Description |
---|---|
Gantt |
An object that contains image settings. |
#Remarks
The GanttImages object’s API allow you to assign images to various elements in the Gantt chart.
@Html.DevExpress().Gantt(settings => {
settings.Images.ImageFolder = "/Images";
//...
}).Bind(GanttDataProvider.Tasks).GetHtml()
See Also