/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { Border, MarkerType } from '../../common/property-types';
/**
 * Represents the configuration options of the X-axis notes icon.
 */
export interface XAxisNotesIcon {
    /**
     * Specifies the background color of the notes icon.
     */
    background?: string;
    /**
     * Specifies the border of the notes icon.
     */
    border?: Border;
    /**
     * Specifies the size of the notes icon.
     */
    size?: number;
    /**
     * Specifies the shape of the notes icon.
     */
    type?: MarkerType;
    /**
     * Determines the visibility of the notes icon.
     */
    visible?: boolean;
}
