\Kendo\Dataviz\UI\ArcGaugeColor

A PHP class representing the color setting of ArcGaugeColors.

Methods

color

The color of the pointer in the specified range.

Returns

\Kendo\Dataviz\UI\ArcGaugeColor

Parameters

$value string

Example

<?php
$color = new \Kendo\Dataviz\UI\ArcGaugeColor();
$color->color('value');
?>

from

The lower range value of the applied color.

Returns

\Kendo\Dataviz\UI\ArcGaugeColor

Parameters

$value float

Example

<?php
$color = new \Kendo\Dataviz\UI\ArcGaugeColor();
$color->from(1);
?>

to

The upper range value of the applied color.

Returns

\Kendo\Dataviz\UI\ArcGaugeColor

Parameters

$value float

Example

<?php
$color = new \Kendo\Dataviz\UI\ArcGaugeColor();
$color->to(1);
?>
In this article
Not finding the help you need?