\Kendo\UI\GanttMessagesPlannedTasks

A PHP class representing the plannedTasks setting of GanttMessages.

Methods

days

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

Returns

\Kendo\UI\GanttMessagesPlannedTasks

Parameters

$value string

Example

<?php
$plannedTasks = new \Kendo\UI\GanttMessagesPlannedTasks();
$plannedTasks->days('value');
?>

hours

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

Returns

\Kendo\UI\GanttMessagesPlannedTasks

Parameters

$value string

Example

<?php
$plannedTasks = new \Kendo\UI\GanttMessagesPlannedTasks();
$plannedTasks->hours('value');
?>

minutes

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

Returns

\Kendo\UI\GanttMessagesPlannedTasks

Parameters

$value string

Example

<?php
$plannedTasks = new \Kendo\UI\GanttMessagesPlannedTasks();
$plannedTasks->minutes('value');
?>

offsetTooltipAdvanced

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

Returns

\Kendo\UI\GanttMessagesPlannedTasks

Parameters

$value string

Example

<?php
$plannedTasks = new \Kendo\UI\GanttMessagesPlannedTasks();
$plannedTasks->offsetTooltipAdvanced('value');
?>

offsetTooltipDelay

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

Returns

\Kendo\UI\GanttMessagesPlannedTasks

Parameters

$value string

Example

<?php
$plannedTasks = new \Kendo\UI\GanttMessagesPlannedTasks();
$plannedTasks->offsetTooltipDelay('value');
?>

seconds

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

Returns

\Kendo\UI\GanttMessagesPlannedTasks

Parameters

$value string

Example

<?php
$plannedTasks = new \Kendo\UI\GanttMessagesPlannedTasks();
$plannedTasks->seconds('value');
?>

switchText

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

Returns

\Kendo\UI\GanttMessagesPlannedTasks

Parameters

$value string

Example

<?php
$plannedTasks = new \Kendo\UI\GanttMessagesPlannedTasks();
$plannedTasks->switchText('value');
?>
In this article
Not finding the help you need?