@progress/kendo-react-gauges
Version:
React Gauges provide a set of React components for building beautiful and customizable gauges. KendoReact Gauges package
36 lines (35 loc) • 1.22 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { RadialLabels } from './radial-labels.interface';
import { Scale } from './scale.interface';
import { LineCap } from './line-cap';
/**
* The scale options of the Gauge.
*/
export interface ArcScale extends Scale {
/**
* Configures the scale labels.
*/
labels?: RadialLabels;
/**
* The distance between the range indicators and the ticks.
*/
rangeDistance?: number;
/**
* The `lineCap` style of the ranges.
*/
rangeLineCap?: LineCap;
/**
* The starting angle of the Gauge. The Gauge is rendered clockwise (0 degrees equal 180 degrees in the polar coordinate system).
*/
startAngle?: number;
/**
* The ending angle of the Gauge. The Gauge is rendered clockwise (0 degrees equals 180 degrees in the polar coordinate system).
*/
endAngle?: number;
}