UNPKG

@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.

33 lines (32 loc) 1.26 kB
/**----------------------------------------------------------------------------------------- * 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, Padding } from '../common/property-types'; /** * Specifies the configuration options of the Chart plot area. */ export interface PlotArea { /** * Specifies the background color of the Chart plot area. * Accepts a valid CSS color string, including HEX and RGB. */ background?: string; /** * Specifies the border of the plot area. */ border?: Border; /** * Specifies the margin of the plot area. A numeric value sets all margins. */ margin?: Margin | number; /** * Specifies the background opacity of the plot area. By default, the background is opaque. */ opacity?: number; /** * Specifies the padding of the plot area. A numeric value sets all paddings. * For Pie, Donut, Radar, and Polar Charts, the default padding is proportional to the Chart size. */ padding?: Padding | number; }