Skip to main content

GanttSettings.Images Property

Provides access to the settings that define images in the Gantt’s elements.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public GanttImages Images { get; }

Property Value

Type Description
GanttImages

An object that contains image settings.

Remarks

The GanttImages object’s API allow you to assign images to various elements in the Gantt chart.

Run Demo: MVCxGantt Introduction

@Html.DevExpress().Gantt(settings => {    
    settings.Images.ImageFolder = "/Images";
    //...
}).Bind(GanttDataProvider.Tasks).GetHtml()
See Also