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