@progress/kendo-react-gauges
Version:
React Gauges provide a set of React components for building beautiful and customizable gauges. KendoReact Gauges package
29 lines (28 loc) • 877 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* The options for the scale ticks.
*/
export interface Ticks {
/**
* The color of the ticks. Accepts a valid CSS color string, including hex and rgb.
*/
color?: string;
/**
* The size of the ticks. Represents the length of the line (in pixels) that is drawn to indicate the tick on the scale.
*/
size?: number;
/**
* The visibility of the ticks.
*/
visible?: boolean;
/**
* The ticks width (in pixels).
*/
width?: number;
}