Skip to main content
All docs
V20.1

StripLineCollection.CurrentDateTimeUpdateInterval Property

Specifies the time interval between the current time updates.

Namespace: DevExpress.Web.ASPxGantt

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

NuGet Package: DevExpress.Web

Declaration

public int CurrentDateTimeUpdateInterval { get; set; }

Property Value

Type Description
Int32

The time interval.

Remarks

Declaratively:

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

In code:

Gantt.SettingsStripLine.ShowCurrentTime = true; 
Gantt.SettingsStripLine.CurrentTimeUpdateInterval = "5"; 
See Also