@progress/kendo-react-gauges
Version:
React Gauges provide a set of React components for building beautiful and customizable gauges. KendoReact Gauges package
29 lines (28 loc) • 786 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package 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;
}