\Kendo\Dataviz\UI\DiagramEditableRotateFill
A PHP class representing the fill setting of DiagramEditableRotate.
Methods
color
Specifies the fill color of the rotation thumb.
Returns
\Kendo\Dataviz\UI\DiagramEditableRotateFill
Parameters
$value string
Example
<?php
$fill = new \Kendo\Dataviz\UI\DiagramEditableRotateFill();
$fill->color('value');
?>
opacity
Specifies the fill opacity of the rotation thumb.
Returns
\Kendo\Dataviz\UI\DiagramEditableRotateFill
Parameters
$value float
Example
<?php
$fill = new \Kendo\Dataviz\UI\DiagramEditableRotateFill();
$fill->opacity(1);
?>