\Kendo\Dataviz\UI\DiagramShapeHoverFill
A PHP class representing the fill setting of DiagramShapeHover.
Methods
color
Defines the hover fill color.
Returns
\Kendo\Dataviz\UI\DiagramShapeHoverFill
Parameters
$value string
Example
<?php
$fill = new \Kendo\Dataviz\UI\DiagramShapeHoverFill();
$fill->color('value');
?>
opacity
Defines the hover fill opacity.
Returns
\Kendo\Dataviz\UI\DiagramShapeHoverFill
Parameters
$value float
Example
<?php
$fill = new \Kendo\Dataviz\UI\DiagramShapeHoverFill();
$fill->opacity(1);
?>