\Kendo\Dataviz\UI\SankeyLinksFocusHighlightBorder

A PHP class representing the border setting of SankeyLinksFocusHighlight.

Methods

color

The color of the border. Accepts a valid CSS color string, including hex and rgb.

Returns

\Kendo\Dataviz\UI\SankeyLinksFocusHighlightBorder

Parameters

$value string

Example

<?php
$border = new \Kendo\Dataviz\UI\SankeyLinksFocusHighlightBorder();
$border->color('value');
?>

opacity

The opacity of the border.

Returns

\Kendo\Dataviz\UI\SankeyLinksFocusHighlightBorder

Parameters

$value float

Example

<?php
$border = new \Kendo\Dataviz\UI\SankeyLinksFocusHighlightBorder();
$border->opacity(1);
?>

width

The width of the border.

Returns

\Kendo\Dataviz\UI\SankeyLinksFocusHighlightBorder

Parameters

$value float

Example

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