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