@progress/kendo-angular-gauges
Version:
Kendo UI Angular Gauges
17 lines (16 loc) • 757 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 { Labels } from './labels.interface';
import { RadialLabelPosition } from './radial-label-position';
/**
* Represents the labels configuration of the Gauge.
*/
export interface RadialLabels extends Labels {
/**
* Sets the position of the labels.
* This property determines where the labels will be placed relative to the radial gauge.
*/
position?: RadialLabelPosition;
}