\Kendo\Dataviz\UI\ChartSeriesItemErrorBarsLine
A PHP class representing the line setting of ChartSeriesItemErrorBars.
Methods
dashType
The dash type of the error bars line.The following dash types are supported: "dash" - a line consisting of dashes; "dashDot" - a line consisting of a repeating pattern of dash-dot; "dot" - a line consisting of dots; "longDash" - a line consisting of a repeating pattern of long-dash; "longDashDot" - a line consisting of a repeating pattern of long-dash-dot; "longDashDotDot" - a line consisting of a repeating pattern of long-dash-dot-dot or "solid" - a solid line.
Returns
\Kendo\Dataviz\UI\ChartSeriesItemErrorBarsLine
Parameters
$value string
Example
<?php
$line = new \Kendo\Dataviz\UI\ChartSeriesItemErrorBarsLine();
$line->dashType('value');
?>
width
The width of the line.
Returns
\Kendo\Dataviz\UI\ChartSeriesItemErrorBarsLine
Parameters
$value float
Example
<?php
$line = new \Kendo\Dataviz\UI\ChartSeriesItemErrorBarsLine();
$line->width(1);
?>