/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { CollectionItemComponent } from '../common/collection-item.component'; import { CollectionService } from '../common/collection.service'; import { ConfigurationService } from '../common/configuration.service'; import { Border, Margin, Padding } from '../common/property-types'; import { Pane, PanesTitle } from '../common/property-types'; import * as i0 from "@angular/core"; /** * Represents the Kendo UI for Angular Chart Pane component. * * @example * ```html * * * * * * * ``` * * @remarks * Supported children components are: {@link PanesTitleComponent}. */ export declare class PaneComponent extends CollectionItemComponent implements Pane { protected configurationService: ConfigurationService; protected collectionService: CollectionService; /** * Specifies the background color of the pane. */ background: string; /** * Specifies the border configuration of the pane. */ border: Border; /** * Determines whether to clip the content of the pane to its boundaries. */ clip: boolean; /** * Specifies the height of the pane in pixels. */ height: number; /** * Specifies the margin of the pane. A numeric value sets all margins. * @default 0 */ margin: Margin | number; /** * Specifies the name of the pane. */ name: string; /** * 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: string | PanesTitle; constructor(configurationService: ConfigurationService, collectionService: CollectionService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }