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