@progress/kendo-angular-gauges
Version:
Kendo UI Angular Gauges
26 lines (25 loc) • 883 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 options for the scale ticks.
*/
export interface Ticks {
/**
* Defines the color of the ticks. Accepts a valid CSS color string, including `hex` and `rgb`.
*/
color?: string;
/**
* Sets the size of the ticks. This sets the length of the line in pixels that shows the tick on the scale.
*/
size?: number;
/**
* Determines if the ticks are visible.
*/
visible?: boolean;
/**
* Sets the width of the ticks in pixels.
*/
width?: number;
}