@progress/kendo-angular-gauges
Version:
Kendo UI Angular Gauges
19 lines (18 loc) • 688 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 options for the RadialGauge pointer cap.
*/
export interface Cap {
/**
* Sets the color of the cap.
* Accepts valid CSS color strings, including hex and rgb.
*/
color?: string;
/**
* Sets the size of the cap as a percentage from 0 to 1.
*/
size?: number;
}