\Kendo\UI\CircularProgressBarColor
A PHP class representing the color setting of CircularProgressBarColors.
Methods
color
The color of the pointer in the specified range.
Returns
\Kendo\UI\CircularProgressBarColor
Parameters
$value string
Example
<?php
$color = new \Kendo\UI\CircularProgressBarColor();
$color->color('value');
?>
from
The lower range value of the applied color.
Returns
\Kendo\UI\CircularProgressBarColor
Parameters
$value float
Example
<?php
$color = new \Kendo\UI\CircularProgressBarColor();
$color->from(1);
?>
to
The upper range value of the applied color.
Returns
\Kendo\UI\CircularProgressBarColor
Parameters
$value float
Example
<?php
$color = new \Kendo\UI\CircularProgressBarColor();
$color->to(1);
?>