/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { Border, Margin } from '../common/property-types';
/**
 * Specifies the configuration options of the Chart area.
 */
export interface ChartArea {
    /**
     * Specifies the background color of the Chart area. Accepts a valid CSS color string, including hex and rgb.
     */
    background?: string;
    /**
     * Specifies the border of the Chart area.
     */
    border?: Border;
    /**
     * Specifies the height of the Chart area.
     */
    height?: number;
    /**
     * Specifies the margin of the Chart area. A numeric value sets all margins.
     */
    margin?: Margin | number;
    /**
     * Specifies the background opacity of the Chart area. By default, the background is opaque.
     */
    opacity?: number;
    /**
     * Specifies the width of the Chart area.
     */
    width?: number;
}
