\Kendo\Dataviz\UI\LinearGaugeGaugeAreaBorder
A PHP class representing the border setting of LinearGaugeGaugeArea.
Methods
color
The color of the border. Any valid CSS color string will work here, including hex and rgb.
Returns
\Kendo\Dataviz\UI\LinearGaugeGaugeAreaBorder
Parameters
$value string
Example
<?php
$border = new \Kendo\Dataviz\UI\LinearGaugeGaugeAreaBorder();
$border->color('value');
?>
dashType
The dash type of the border.
Returns
\Kendo\Dataviz\UI\LinearGaugeGaugeAreaBorder
Parameters
$value string
Example
<?php
$border = new \Kendo\Dataviz\UI\LinearGaugeGaugeAreaBorder();
$border->dashType('value');
?>
width
The width of the border.#### Example - set gaugeArea border width
Returns
\Kendo\Dataviz\UI\LinearGaugeGaugeAreaBorder
Parameters
$value float
Example
<?php
$border = new \Kendo\Dataviz\UI\LinearGaugeGaugeAreaBorder();
$border->width(1);
?>