\Kendo\Dataviz\UI\DiagramEditableResizeHandles

A PHP class representing the handles setting of DiagramEditableResize.

Methods

fill

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

Returns

\Kendo\Dataviz\UI\DiagramEditableResizeHandles

Parameters

$value string|\Kendo\Dataviz\UI\DiagramEditableResizeHandlesFill|array

Example - using string

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

Example - using \Kendo\Dataviz\UI\DiagramEditableResizeHandlesFill

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

Example - using array

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

height

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

Returns

\Kendo\Dataviz\UI\DiagramEditableResizeHandles

Parameters

$value float

Example

<?php
$handles = new \Kendo\Dataviz\UI\DiagramEditableResizeHandles();
$handles->height(1);
?>

hover

Specifies the settings of the resizing handles on hovering over them. See the editable.resize configuration for an example.

Returns

\Kendo\Dataviz\UI\DiagramEditableResizeHandles

Parameters

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

Example - using \Kendo\Dataviz\UI\DiagramEditableResizeHandlesHover

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

Example - using array

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

stroke

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

Returns

\Kendo\Dataviz\UI\DiagramEditableResizeHandles

Parameters

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

Example - using \Kendo\Dataviz\UI\DiagramEditableResizeHandlesStroke

<?php
$handles = new \Kendo\Dataviz\UI\DiagramEditableResizeHandles();
$stroke = new \Kendo\Dataviz\UI\DiagramEditableResizeHandlesStroke();
$color = 'value';
$stroke->color($color);
$handles->stroke($stroke);
?>

Example - using array

<?php
$handles = new \Kendo\Dataviz\UI\DiagramEditableResizeHandles();
$color = 'value';
$handles->stroke(array('color' => $color));
?>

width

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

Returns

\Kendo\Dataviz\UI\DiagramEditableResizeHandles

Parameters

$value float

Example

<?php
$handles = new \Kendo\Dataviz\UI\DiagramEditableResizeHandles();
$handles->width(1);
?>
In this article
Not finding the help you need?