@progress/kendo-angular-charts
Version:
Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.
35 lines (34 loc) • 1.18 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 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;
}