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

GanttStripLineSettings.CurrentTimeCssClass Property

Specifies the CSS class that stores appearance settings to highlight the current time.

Namespace: DevExpress.Web.ASPxGantt

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

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public string CurrentTimeCssClass { get; set; }

Property Value

Type Default Description
String String.Empty

The CSS class name.

Property Paths

You can access this nested property as listed below:

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

Remarks

Use the CurrentTimeCssClass property to specify custom appearance settings for a strip line that highlights the current time in the Gantt chart.

Declaratively:

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

In code:

Gantt.SettingsStripLine.ShowCurrentTime = true; 
Gantt.SettingsStripLine.CurrentTimeUpdateInterval = "5"; 
Gantt.SettingsStripLine.CurrentTimeCssClass = "my_class"; 

Examples

Online Demos

See Also