GanttMessagesPlannedTasksSettingsBuilder

Methods

SwitchText(System.String)

The text that would be displayed on the switch allowing the user to turn on and off the PlannedTasks view in the Gantt Timeline.

Parameters

value - System.String

The value that configures the switchtext.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Messages(m => m.PlannedTasks(ptm => ptm.SwitchText("Value")))
            )
             

OffsetTooltipAdvanced(System.String)

The text rendered in the Tooltip that would be displayed for tasks which have finished in advance compared to their plannedEnd.

Parameters

value - System.String

The value that configures the offsettooltipadvanced.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Messages(m => m.PlannedTasks(ptm => ptm.OffsetTooltipAdvanced("Value")))
            )
             

OffsetTooltipDelay(System.String)

The text rendered in the Tooltip that would be displayed for tasks which have finished with delay compared to their plannedEnd.

Parameters

value - System.String

The value that configures the offsettooltipdelay.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Messages(m => m.PlannedTasks(ptm => ptm.OffsetTooltipDelay("Value")))
            )
             

Seconds(System.String)

The text for "seconds" displayed in the Advanced/Delayed Tooltip (see above).

Parameters

value - System.String

The value that configures the seconds.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Messages(m => m.PlannedTasks(ptm => ptm.Seconds("Value")))
            )
             

Minutes(System.String)

The text for "minutes" displayed in the Advanced/Delayed Tooltip (see above).

Parameters

value - System.String

The value that configures the minutes.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Messages(m => m.PlannedTasks(ptm => ptm.Minutes("Value")))
            )
             

Hours(System.String)

The text for "hours" displayed in the Advanced/Delayed Tooltip (see above).

Parameters

value - System.String

The value that configures the hours.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Messages(m => m.PlannedTasks(ptm => ptm.Hours("Value")))
            )
             

Days(System.String)

The text for "days" displayed in the Advanced/Delayed Tooltip (see above).

Parameters

value - System.String

The value that configures the days.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Messages(m => m.PlannedTasks(ptm => ptm.Days("Value")))
            )