@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.
71 lines (70 loc) • 2.95 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 { 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
* <kendo-chart>
* <kendo-chart-panes>
* <kendo-chart-pane
* name="top"
* background="pink"
* [border]="{ color: 'black', dashType: 'dash', width: 2 }">
* </kendo-chart-pane>
* </kendo-chart-panes>
* </kendo-chart>
* ```
*
* @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<PaneComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<PaneComponent, "kendo-chart-pane, kendo-chart-panes-item", 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; }; "name": { "alias": "name"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, never, true, never>;
}