\Kendo\UI\GanttRange

A PHP class representing the range setting of Gantt.

Methods

end

If set to some date the timeline of all views will end to this date.

Returns

\Kendo\UI\GanttRange

Parameters

$value date

Example

<?php
$range = new \Kendo\UI\GanttRange();
$range->end(new date());
?>

start

If set to some date the timeline of all views will start from this date.

Returns

\Kendo\UI\GanttRange

Parameters

$value date

Example

<?php
$range = new \Kendo\UI\GanttRange();
$range->start(new date());
?>
In this article
Not finding the help you need?