sryd-charts-enterprise
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
14 lines (13 loc) • 602 B
TypeScript
import type { AgChartLabelFormatterParams, Formatter, _ModuleSupport } from 'ag-charts-community';
interface GaugeLabelDatum {
value: number;
text?: string;
formatter?: Formatter<AgChartLabelFormatterParams<any>>;
}
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(series: _ModuleSupport.Series<unknown, any, any>, datum: GaugeLabelDatum, valueOverride?: number): string | undefined;
export {};