/**-----------------------------------------------------------------------------------------
* 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';
/**
 * Specifies the appearance configuration for the major and minor axis grid lines
 * ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/elements/axes#default-axis-configuration)).
 */
export interface GridLines {
    /**
     * Specifies the color of the grid lines. Accepts a valid CSS color string, including hex and rgb.
     */
    color?: string;
    /**
     * Specifies the dash type of the grid lines.
     */
    dashType?: DashType;
    /**
     * Specifies the number of lines to skip at the beginning.
     */
    skip?: number;
    /**
     * Specifies the tick-rendering step. Renders every n<sup>th</sup> line, where `n` is the step.
     */
    step?: number;
    /**
     * Determines whether to display the lines.
     * By default, only the major axis grid lines are visible.
     */
    visible?: boolean;
    /**
     * Specifies the width of the lines in pixels.
     */
    width?: number;
}
