\Kendo\Dataviz\UI\DiagramEditableResize

A PHP class representing the resize setting of DiagramEditable.

Methods

handles

Specifies the settings of the resizing handles. See the editable.resize configuration for an example.

Returns

\Kendo\Dataviz\UI\DiagramEditableResize

Parameters

$value \Kendo\Dataviz\UI\DiagramEditableResizeHandles|array

Example - using \Kendo\Dataviz\UI\DiagramEditableResizeHandles

<?php
$resize = new \Kendo\Dataviz\UI\DiagramEditableResize();
$handles = new \Kendo\Dataviz\UI\DiagramEditableResizeHandles();
$fill = 'value';
$handles->fill($fill);
$resize->handles($handles);
?>

Example - using array

<?php
$resize = new \Kendo\Dataviz\UI\DiagramEditableResize();
$fill = 'value';
$resize->handles(array('fill' => $fill));
?>
In this article
Not finding the help you need?