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.

42 lines (41 loc) 1.53 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'; import { PanesTitle } from './pane/title.interface'; /** * Represents the configuration options of the Chart pane defaults. */ export interface PaneDefaults { /** * Specifies the background color of the pane. Accepts a valid CSS color string, including HEX and RGB. */ background?: string; /** * Specifies the border of the pane. */ border?: Border; /** * Specifies whether the Charts in the pane have to be clipped. * By default, all Charts except the Radar and Polar Charts are clipped. */ clip?: boolean; /** * Specifies the height of the pane in pixels. */ height?: number; /** * Specifies the margin of the pane. A numeric value sets all margins. */ margin?: Margin | number; /** * Specifies the padding of the pane. A numeric value sets all paddings. */ padding?: Padding | number; /** * Specifies the title configuration of the pane. * To display the title, set the [`panes.title.text`]({% slug api_charts_panestitle %}#toc-text) option. */ title?: PanesTitle; }