/**-----------------------------------------------------------------------------------------
* 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 settings for the overlay of the series elements.
 */
export interface Overlay {
    /**
     * Specifies the gradient of the Chart series.
     *
     * Use `glass` for Bar, Column and Candlestick series. Use `roundedBevel` and `sharpBevel` for Donut and Pie series.
     */
    gradient?: 'glass' | 'none' | 'roundedBevel' | 'sharpBevel';
}
