\Kendo\Dataviz\UI\SankeyLinksFocusHighlight
A PHP class representing the focusHighlight setting of SankeyLinks.
Methods
border
The border of the link focus highlight.
Returns
\Kendo\Dataviz\UI\SankeyLinksFocusHighlight
Parameters
$value \Kendo\Dataviz\UI\SankeyLinksFocusHighlightBorder|array
Example - using \Kendo\Dataviz\UI\SankeyLinksFocusHighlightBorder
<?php
$focusHighlight = new \Kendo\Dataviz\UI\SankeyLinksFocusHighlight();
$border = new \Kendo\Dataviz\UI\SankeyLinksFocusHighlightBorder();
$color = 'value';
$border->color($color);
$focusHighlight->border($border);
?>
Example - using array
<?php
$focusHighlight = new \Kendo\Dataviz\UI\SankeyLinksFocusHighlight();
$color = 'value';
$focusHighlight->border(array('color' => $color));
?>