UNPKG

ag-charts-community

Version:

Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue

17 lines (16 loc) 807 B
import { AbstractModuleInstance, type DynamicContext } from 'ag-charts-core'; import type { LayoutCompleteEvent } from '../../core/eventsHub'; import type { ChartRegistry } from '../../module/moduleContext'; import { Group } from '../../scene/group'; import { Rect } from '../../scene/shape/rect'; import { Text } from '../../scene/shape/text'; export declare class Background extends AbstractModuleInstance { protected readonly ctx: DynamicContext<ChartRegistry>; protected readonly node: Group<unknown>; protected readonly rectNode: Rect<unknown>; protected readonly textNode: Text<unknown>; constructor(ctx: DynamicContext<ChartRegistry>); protected applyOptions(): void; protected createNode(): Group<unknown>; protected onLayoutComplete(e: LayoutCompleteEvent): void; }