/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { DashType } from './dash-type.interface';
/**
 * Represents the scale line options.
 */
export interface Line {
    /**
     * Sets the color of the lines.
     * Accepts valid CSS color strings, including hex and rgb.
     */
    color?: string;
    /**
     * Sets the dash type of the line.
     */
    dashType?: DashType;
    /**
     * Sets the visibility of the lines.
     */
    visible?: boolean;
    /**
     * Sets the width of the line in pixels.
     */
    width?: number;
}
