/**-----------------------------------------------------------------------------------------
* Copyright © 2026 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;
}
