@progress/kendo-angular-gauges
Version:
Kendo UI Angular Gauges
28 lines (27 loc) • 810 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';
/**
* The scale line options.
*/
export interface Line {
/**
* The color of the lines.
* Accepts valid CSS color strings, including hex and rgb.
*/
color?: string;
/**
* The dash type of the line.
*/
dashType?: DashType;
/**
* The visibility of the lines.
*/
visible?: boolean;
/**
* The width of the line.
*/
width?: number;
}