ag-charts-community
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
14 lines (13 loc) • 474 B
TypeScript
import type { DOMManager } from '../../dom/domManager';
import { type Widget } from '../../widget/widget';
import { DragInterpreter } from './dragInterpreter';
export declare class WidgetSet {
readonly seriesWidget: Widget;
readonly chartWidget: Widget;
readonly containerWidget: Widget;
readonly seriesDragInterpreter?: DragInterpreter;
constructor(domManager: DOMManager, opts: {
withDragInterpretation: boolean;
});
destroy(): void;
}