UNPKG

ag-charts-enterprise

Version:

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

19 lines (18 loc) 692 B
import type { AgChartLabelFormatterParams, RichFormatter, TextOrSegments, _ModuleSupport } from 'ag-charts-community'; interface GaugeLabelDatum { value: number; text?: TextOrSegments; formatter?: RichFormatter<AgChartLabelFormatterParams<any>>; } interface Ctx { chartService: { context?: unknown; }; } export declare const fadeInFns: _ModuleSupport.FromToFns<_ModuleSupport.Node, any, any>; export declare function formatLabel(value: number | undefined, scale: { min: number; max: number; }): string; export declare function getLabelText(seriesId: string, ctx: Ctx, datum: GaugeLabelDatum, valueOverride?: number): TextOrSegments | undefined; export {};