\Kendo\Dataviz\UI\SankeyLegendBorder
A PHP class representing the border setting of SankeyLegend.
Methods
color
The color of the border. Accepts a valid CSS color string, including hex and rgb.
Returns
\Kendo\Dataviz\UI\SankeyLegendBorder
Parameters
$value string
Example
<?php
$border = new \Kendo\Dataviz\UI\SankeyLegendBorder();
$border->color('value');
?>
dashType
The dash type of the border.
Returns
\Kendo\Dataviz\UI\SankeyLegendBorder
Parameters
$value string
Example
<?php
$border = new \Kendo\Dataviz\UI\SankeyLegendBorder();
$border->dashType('value');
?>
width
The width of the border in pixels. By default the border width is set to zero which means that the border will not appear.
Returns
\Kendo\Dataviz\UI\SankeyLegendBorder
Parameters
$value float
Example
<?php
$border = new \Kendo\Dataviz\UI\SankeyLegendBorder();
$border->width(1);
?>