/**-----------------------------------------------------------------------------------------
* 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 { LineCap } from './line-cap';
/**
 * Represents the scale options of the Gauge.
 */
export interface ArcScale extends Scale {
    /**
     * Sets the scale labels configuration.
     */
    labels?: RadialLabels;
    /**
     * Sets the distance between the range indicators and the ticks in pixels.
     */
    rangeDistance?: number;
    /**
     * Sets the `lineCap` style of the ranges.
     */
    rangeLineCap?: LineCap;
    /**
     * Sets the starting angle of the Gauge in degrees.
     * The Gauge renders clockwise where 0 degrees equals 180 degrees in the polar coordinate system.
     */
    startAngle?: number;
    /**
     * Sets the ending angle of the Gauge in degrees.
     * The Gauge renders clockwise where 0 degrees equals 180 degrees in the polar coordinate system.
     */
    endAngle?: number;
}
