\Kendo\Dataviz\UI\DiagramShapeDefaultsConnectorHoverStroke
A PHP class representing the stroke setting of DiagramShapeDefaultsConnectorHover.
Methods
color
Defines the hover stroke color.
Returns
\Kendo\Dataviz\UI\DiagramShapeDefaultsConnectorHoverStroke
Parameters
$value string
Example
<?php
$stroke = new \Kendo\Dataviz\UI\DiagramShapeDefaultsConnectorHoverStroke();
$stroke->color('value');
?>
dashType
The hover stroke dash type.The following dash types are supported: "dash" - A line that consists of dashes; "dashDot" - A line that consists of a repeating pattern of dash-dot; "dot" - A line that consists of dots; "longDash" - A line that consists of a repeating pattern of long-dash; "longDashDot" - A line that consists of a repeating pattern of long-dash-dot; "longDashDotDot" - A line that consists of a repeating pattern of long-dash-dot-dot or "solid" - A solid line.
Returns
\Kendo\Dataviz\UI\DiagramShapeDefaultsConnectorHoverStroke
Parameters
$value string
Example
<?php
$stroke = new \Kendo\Dataviz\UI\DiagramShapeDefaultsConnectorHoverStroke();
$stroke->dashType('value');
?>
width
Defines the thickness or width of the shape connectors stroke on hover.
Returns
\Kendo\Dataviz\UI\DiagramShapeDefaultsConnectorHoverStroke
Parameters
$value float
Example
<?php
$stroke = new \Kendo\Dataviz\UI\DiagramShapeDefaultsConnectorHoverStroke();
$stroke->width(1);
?>