\Kendo\Dataviz\UI\ChartSeriesItemOutliersBorder
A PHP class representing the border setting of ChartSeriesItemOutliers.
Methods
color
The color of the border. Accepts a valid CSS color string, including hex and rgb.
Returns
\Kendo\Dataviz\UI\ChartSeriesItemOutliersBorder
Parameters
$value string|\Kendo\JavaScriptFunction
Example - using string
<?php
$border = new \Kendo\Dataviz\UI\ChartSeriesItemOutliersBorder();
$border->color('value');
?>
Example - using \Kendo\JavaScriptFunction
<?php
$border = new \Kendo\Dataviz\UI\ChartSeriesItemOutliersBorder();
$border->color(new \Kendo\JavaScriptFunction('function() { }'));
?>
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\ChartSeriesItemOutliersBorder
Parameters
$value float|\Kendo\JavaScriptFunction
Example - using float
<?php
$border = new \Kendo\Dataviz\UI\ChartSeriesItemOutliersBorder();
$border->width(1);
?>
Example - using \Kendo\JavaScriptFunction
<?php
$border = new \Kendo\Dataviz\UI\ChartSeriesItemOutliersBorder();
$border->width(new \Kendo\JavaScriptFunction('function() { }'));
?>