\Kendo\UI\GanttViewRange

A PHP class representing the range setting of GanttView.

Methods

end

If set to some date the timeline of the view will end to this date.Overrides the range.end option of the gantt.

Returns

\Kendo\UI\GanttViewRange

Parameters

$value date

Example

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

start

If set to some date the timeline of the view will start from this date.Overrides the range.start option of the gantt.

Returns

\Kendo\UI\GanttViewRange

Parameters

$value date

Example

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