UNPKG

@progress/kendo-angular-progressbar

Version:

Kendo UI Angular component starter template

22 lines (21 loc) 717 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Defines the color range configuration of the pointer. */ export interface ProgressColor { /** * Sets the color of the range. Accepts valid CSS color strings, including hex and rgb. */ color?: string; /** * Sets the range start value. */ from?: number; /** * Sets the range end value. */ to?: number; }