@progress/kendo-angular-gauges
Version:
Kendo UI Angular Gauges
35 lines (34 loc) • 1.24 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { RadialLabels } from './radial-labels.interface';
import { Scale } from './scale.interface';
import { Range } from './range.interface';
/**
* Represents the scale options of the Gauge.
*/
export interface RadialScale extends Scale {
/**
* Sets up the scale labels.
*/
labels?: RadialLabels;
/**
* Defines the distance between the range indicators and the ticks.
*/
rangeDistance?: number;
/**
* Defines the ranges of the scale.
*/
ranges?: Range[];
/**
* Sets the starting angle of the gauge.
* The Gauge renders clockwise where 0 degrees equals 180 degrees in the polar coordinate system.
*/
startAngle?: number;
/**
* Sets the ending angle of the gauge.
* The Gauge renders clockwise where 0 degrees equals 180 degrees in the polar coordinate system.
*/
endAngle?: number;
}