\Kendo\Dataviz\UI\ChartSeriesItemWhiskers
A PHP class representing the whiskers setting of ChartSeriesItem.
Methods
color
The color of the whiskers.
Returns
\Kendo\Dataviz\UI\ChartSeriesItemWhiskers
Parameters
$value string
Example
<?php
$whiskers = new \Kendo\Dataviz\UI\ChartSeriesItemWhiskers();
$whiskers->color('value');
?>
dashType
The dash type of the whiskers.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\ChartSeriesItemWhiskers
Parameters
$value string
Example
<?php
$whiskers = new \Kendo\Dataviz\UI\ChartSeriesItemWhiskers();
$whiskers->dashType('value');
?>
opacity
The opacity of the whiskers.
Returns
\Kendo\Dataviz\UI\ChartSeriesItemWhiskers
Parameters
$value float
Example
<?php
$whiskers = new \Kendo\Dataviz\UI\ChartSeriesItemWhiskers();
$whiskers->opacity(1);
?>
width
The width of the whiskers.
Returns
\Kendo\Dataviz\UI\ChartSeriesItemWhiskers
Parameters
$value float
Example
<?php
$whiskers = new \Kendo\Dataviz\UI\ChartSeriesItemWhiskers();
$whiskers->width(1);
?>