@progress/kendo-angular-gauges
Version:
Kendo UI Angular Gauges
26 lines (25 loc) • 795 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Represents the configuration for the scale ranges.
*/
export interface Range {
/**
* Sets the start position of the range.
*/
from?: number;
/**
* Sets the end position of the range.
*/
to?: number;
/**
* Sets the range opacity.
*/
opacity?: number;
/**
* Sets the color of the range. Accepts valid CSS color strings, including hex and rgb.
*/
color?: string;
}