\Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandles
A PHP class representing the handles setting of DiagramConnectionDefaultsSelection.
Methods
fill
Defines the handles fill options when connections are selected.
Returns
\Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandles
Parameters
$value string|\Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandlesFill|array
Example - using string
<?php
$handles = new \Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandles();
$handles->fill('value');
?>
Example - using \Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandlesFill
<?php
$handles = new \Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandles();
$fill = new \Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandlesFill();
$color = 'value';
$fill->color($color);
$handles->fill($fill);
?>
Example - using array
<?php
$handles = new \Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandles();
$color = 'value';
$handles->fill(array('color' => $color));
?>
height
The height of the handle elements when connections are selected.
Returns
\Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandles
Parameters
$value float
Example
<?php
$handles = new \Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandles();
$handles->height(1);
?>
stroke
Defines the handles stroke options when connections are selected.
Returns
\Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandles
Parameters
$value \Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandlesStroke|array
Example - using \Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandlesStroke
<?php
$handles = new \Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandles();
$stroke = new \Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandlesStroke();
$color = 'value';
$stroke->color($color);
$handles->stroke($stroke);
?>
Example - using array
<?php
$handles = new \Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandles();
$color = 'value';
$handles->stroke(array('color' => $color));
?>
width
The width of the handle elements when connections are selected.
Returns
\Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandles
Parameters
$value float
Example
<?php
$handles = new \Kendo\Dataviz\UI\DiagramConnectionDefaultsSelectionHandles();
$handles->width(1);
?>