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