Skip to main content
All docs
V25.1
  • GanttStripLineSettings.CurrentTimeCssClass Property

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

    Namespace: DevExpress.Web.ASPxGantt

    Assembly: DevExpress.Web.ASPxGantt.v25.1.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 MVC Extensions GanttSettings
    .SettingsStripLine .CurrentTimeCssClass
    ASP.NET Web Forms Controls ASPxGantt
    .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.

    Gantt - CurrentTimeCssClass Property

    Run Demo: ASPxGantt - Strip Lines Run Demo: MVCxGantt - Strip Lines

    Web Forms:

    <dx:ASPxGantt ID="Gantt" runat="server"...>
        ...
        <SettingsStripLine ShowCurrentTime="true" CurrentTimeCssClass="class_1" />
    </dx:ASPxGantt>
    
    Gantt.SettingsStripLine.ShowCurrentTime = true; 
    Gantt.SettingsStripLine.CurrentTimeCssClass = "class_1";
    

    MVC:

    settings.SettingsStripLine.ShowCurrentTime = true; 
    settings.SettingsStripLine.CurrentTimeCssClass = "class_1";
    

    Examples

    See Also