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

    Specifies the title of a strip line that highlights the current time.

    Namespace: DevExpress.Web.ASPxGantt

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

    NuGet Package: DevExpress.Web

    Declaration

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

    Property Value

    Type Default Description
    String String.Empty

    The title.

    Property Paths

    You can access this nested property as listed below:

    Library Object Type Path to CurrentTimeTitle
    ASP.NET MVC Extensions GanttSettings
    .SettingsStripLine .CurrentTimeTitle
    ASP.NET Web Forms Controls ASPxGantt
    .SettingsStripLine .CurrentTimeTitle

    Remarks

    Gantt - CurrentTimeTitle Property

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

    Web Forms:

    <dx:ASPxGantt ID="Gantt" runat="server"...>
        ...
        <SettingsStripLine ShowCurrentTime="true" CurrentTimeTitle="Current Time" />
    </dx:ASPxGantt>
    
    Gantt.SettingsStripLine.ShowCurrentTime = true; 
    Gantt.SettingsStripLine.CurrentTimeTitle = "Current Time";
    

    MVC:

    settings.SettingsStripLine.ShowCurrentTime = true; 
    settings.SettingsStripLine.CurrentTimeTitle= "Current Time";
    

    Examples

    See Also