\Kendo\Dataviz\UI\ChartSeriesItemTargetLine
A PHP class representing the line setting of ChartSeriesItemTarget.
Methods
width
The width of the line.
Returns
\Kendo\Dataviz\UI\ChartSeriesItemTargetLine
Parameters
$value float|\Kendo\JavaScriptFunction
Example - using float
<?php
$line = new \Kendo\Dataviz\UI\ChartSeriesItemTargetLine();
$line->width(1);
?>
Example - using \Kendo\JavaScriptFunction
<?php
$line = new \Kendo\Dataviz\UI\ChartSeriesItemTargetLine();
$line->width(new \Kendo\JavaScriptFunction('function() { }'));
?>