UNPKG

ag-charts-enterprise

Version:

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

34 lines (33 loc) 1.88 kB
import { type AgNightingaleSeriesOptions, _ModuleSupport } from 'ag-charts-community'; import { type DynamicContext } from 'ag-charts-core'; import type { RadialColumnNodeDatum } from '../radial-column/radialColumnSeriesBase'; import { RadialColumnSeriesBase } from '../radial-column/radialColumnSeriesBase'; import { RadialColumnSeriesBaseProperties } from '../radial-column/radialColumnSeriesBaseProperties'; export declare class NightingaleSeries extends RadialColumnSeriesBase<_ModuleSupport.Sector<RadialColumnNodeDatum>> { static readonly className = "NightingaleSeries"; static readonly type: "nightingale"; properties: RadialColumnSeriesBaseProperties<AgNightingaleSeriesOptions<any, unknown>>; constructor(moduleCtx: DynamicContext<_ModuleSupport.ChartRegistry>); setZIndex(zIndex: number): boolean; protected getStackId(): string; protected nodeFactory(): _ModuleSupport.Sector<RadialColumnNodeDatum>; protected updateItemPath(node: _ModuleSupport.Sector, datum: RadialColumnNodeDatum, highlight: boolean): void; protected getColumnTransitionFunctions(): { toFn: (_sect: _ModuleSupport.Sector<unknown>, datum: RadialColumnNodeDatum, status: _ModuleSupport.NodeUpdateState) => { innerRadius: number; outerRadius: number; startAngle: number; endAngle: number; clipSector: _ModuleSupport.SectorBox; }; fromFn: (sect: _ModuleSupport.Sector<unknown>, datum: RadialColumnNodeDatum, status: _ModuleSupport.NodeUpdateState) => { innerRadius: number; outerRadius: number; startAngle: number; endAngle: number; clipSector: _ModuleSupport.SectorBox; phase: "initial" | "none" | "end" | "remove" | "add" | "update" | "trailing"; }; }; protected hasItemStylers(): boolean; }