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.

61 lines (60 loc) 2.65 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ConfigurationService } from '../common/configuration.service'; import { SettingsComponent } from '../common/settings.component'; import { Border, Margin, Padding, PaneDefaults, PaneDefaultsTitle } from '../common/property-types'; import * as i0 from "@angular/core"; /** * Represents the default options for all Chart panes * ([see example](slug:panes_chart_charts#toc-default-settings)). * * @example * ```html * <kendo-chart> * <kendo-chart-pane-defaults background="#f0f0f0" [border]="{ color: '#ccc', width: 1 }"> * <kendo-chart-pane-defaults-title [visible]="true"></kendo-chart-pane-defaults-title> * </kendo-chart-pane-defaults> * </kendo-chart> * ``` * * @remarks * Supported children components are: {@link PaneDefaultsTitleComponent}. */ export declare class PaneDefaultsComponent extends SettingsComponent implements PaneDefaults { configurationService: ConfigurationService; /** * Specifies the background color of the pane. */ background: string; /** * Specifies the border configuration of the pane. */ border: Border; /** * Determines whether the pane clips its content. */ clip: boolean; /** * Specifies the height of the pane. */ height: number; /** * Specifies the margin of the pane. A numeric value sets all margins. * @default 0 */ margin: Margin | number; /** * Specifies the padding of the pane. A numeric value sets all paddings. * @default 0 */ padding: Padding | number; /** * Specifies the title configuration of the pane. */ title: PaneDefaultsTitle; constructor(configurationService: ConfigurationService); static ɵfac: i0.ɵɵFactoryDeclaration<PaneDefaultsComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<PaneDefaultsComponent, "kendo-chart-pane-defaults", never, { "background": { "alias": "background"; "required": false; }; "border": { "alias": "border"; "required": false; }; "clip": { "alias": "clip"; "required": false; }; "height": { "alias": "height"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, never, true, never>; }