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