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
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 |
|
| ASP.NET Web Forms Controls | ASPxGantt |
|
Remarks

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