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