UNPKG

ag-charts-community

Version:

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

13 lines (12 loc) 678 B
import type { NodeWithOpacity } from '../../scene/node'; import type { Selection } from '../../scene/selection'; import type { AnimationManager } from '../interaction/animationManager'; export declare function seriesLabelFadeInAnimation<T>({ id }: { id: string; }, subId: string, animationManager: AnimationManager, ...labelSelections: Selection<T, NodeWithOpacity<T>>[]): void; export declare function seriesLabelFadeOutAnimation<T>({ id }: { id: string; }, subId: string, animationManager: AnimationManager, ...labelSelections: Selection<T, NodeWithOpacity<T>>[]): void; export declare function resetLabelFn(_node: NodeWithOpacity<unknown>): { opacity: number; };