\Kendo\Dataviz\UI\DiagramEditableRotate

A PHP class representing the rotate setting of DiagramEditable.

Methods

fill

Specifies the fill settings of the rotation thumb.

Returns

\Kendo\Dataviz\UI\DiagramEditableRotate

Parameters

$value \Kendo\Dataviz\UI\DiagramEditableRotateFill|array

Example - using \Kendo\Dataviz\UI\DiagramEditableRotateFill

<?php
$rotate = new \Kendo\Dataviz\UI\DiagramEditableRotate();
$fill = new \Kendo\Dataviz\UI\DiagramEditableRotateFill();
$color = 'value';
$fill->color($color);
$rotate->fill($fill);
?>

Example - using array

<?php
$rotate = new \Kendo\Dataviz\UI\DiagramEditableRotate();
$color = 'value';
$rotate->fill(array('color' => $color));
?>

stroke

Specifies the stroke settings of the rotation thumb.

Returns

\Kendo\Dataviz\UI\DiagramEditableRotate

Parameters

$value \Kendo\Dataviz\UI\DiagramEditableRotateStroke|array

Example - using \Kendo\Dataviz\UI\DiagramEditableRotateStroke

<?php
$rotate = new \Kendo\Dataviz\UI\DiagramEditableRotate();
$stroke = new \Kendo\Dataviz\UI\DiagramEditableRotateStroke();
$color = 'value';
$stroke->color($color);
$rotate->stroke($stroke);
?>

Example - using array

<?php
$rotate = new \Kendo\Dataviz\UI\DiagramEditableRotate();
$color = 'value';
$rotate->stroke(array('color' => $color));
?>
In this article
Not finding the help you need?