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