Skip to main content
A newer version of this page is available. .

GanttStripLineSettings Class

Provides access to strip line settings.

Namespace: DevExpress.Web.ASPxGantt

Assembly: DevExpress.Web.ASPxGantt.v20.1.dll

NuGet Package: DevExpress.Web

Declaration

public class GanttStripLineSettings :
    GanttSettingsBase

The following members return GanttStripLineSettings objects:

Remarks

The ASPxGantt uses strip lines to highlight a certain time or time intervals in the chart. Use the StripLines collection to access strip lines.

Use the GanttStripLineSettings class to customize strip lines in the Gantt control.

Declaratively:

<dx:ASPxGantt ID="Gantt" runat="server"...>
    ...
    <SettingsStripLine ShowCurrentTime="true" CurrentTimeUpdateInterval="5" />
</dx:ASPxGantt>

In code:

Gantt.SettingsStripLine.ShowCurrentTime = true; 
Gantt.SettingsStripLine.CurrentTimeUpdateInterval = 5; 

Examples

Online Demos

Implements

Inheritance

See Also