@progress/kendo-angular-gauges
Version:
Kendo UI Angular Gauges
24 lines (23 loc) • 815 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { DashType } from './dash-type.interface';
/**
* Represents the appearance settings for the border lines.
*/
export interface Border {
/**
* Sets the color of the border line.
* Accepts valid CSS color strings, including hex and rgb.
*/
color?: string;
/**
* Sets the dash type of the border line.
*/
dashType?: DashType;
/**
* Sets the width of the border line in pixels.
*/
width?: number;
}