\Kendo\Dataviz\UI\StockChartNavigatorSeriesItemHighlightBorder
A PHP class representing the border setting of StockChartNavigatorSeriesItemHighlight.
Methods
color
The border color.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorSeriesItemHighlightBorder
Parameters
$value string
Example
<?php
$border = new \Kendo\Dataviz\UI\StockChartNavigatorSeriesItemHighlightBorder();
$border->color('value');
?>
opacity
The border opacity.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorSeriesItemHighlightBorder
Parameters
$value float
Example
<?php
$border = new \Kendo\Dataviz\UI\StockChartNavigatorSeriesItemHighlightBorder();
$border->opacity(1);
?>
width
The width of the border.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorSeriesItemHighlightBorder
Parameters
$value float
Example
<?php
$border = new \Kendo\Dataviz\UI\StockChartNavigatorSeriesItemHighlightBorder();
$border->width(1);
?>