/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { Border } from '../../common/property-types';
/**
 * Represents the series markers highlight options.
 */
export interface MarkersHighlight {
    /**
     * Configures the border of the markers highlight.
     */
    border?: Border;
    /**
     * Sets the color of the markers highlight.
     * Accepts a valid CSS color string, including hex and rgb.
     */
    color?: string;
    /**
     * Sets the opacity of the highlighted marker.
     */
    opacity?: number;
}
