/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Specifies the appearance configuration for the major and minor axis ticks
 * ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/elements/axes#default-axis-configuration)).
 */
export interface AxisTicks {
    /**
     * Specifies the color of the tick lines. Accepts a valid CSS color string, including hex and rgb.
     */
    color?: string;
    /**
     * Specifies the length of the tick line in pixels.
     */
    size?: number;
    /**
     * Specifies the tick-rendering step. Renders every n<sup>th</sup> tick, where `n` is the step.
     */
    step?: number;
    /**
     * Specifies the number of ticks to skip at the beginning.
     */
    skip?: number;
    /**
     * Determines whether to display the axis ticks.
     * By default, only the major axis ticks are visible.
     */
    visible?: boolean;
    /**
     * Specifies the width of the ticks in pixels.
     */
    width?: number;
}
