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

GanttStripLineSettings.ShowCurrentTime Property

Specifies whether to highlight the current time in the Gantt control.

Namespace: DevExpress.Web.ASPxGantt

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

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(false)]
public bool ShowCurrentTime { get; set; }

Property Value

Type Default Description
Boolean **false**

true, to highlight the current time; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to ShowCurrentTime
ASP.NET Controls and MVC Extensions ASPxGantt
.SettingsStripLine .ShowCurrentTime
ASP.NET MVC Extensions GanttSettings
.SettingsStripLine .ShowCurrentTime
MVCxGantt
.SettingsStripLine .ShowCurrentTime

Remarks

Set the ShowCurrentTime property to true to highlight the current time and use the CurrentTimeUpdateInterval property to specify the time interval between the current time updates.

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

See Also