UNPKG

ag-charts-enterprise

Version:

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

15 lines (14 loc) 545 B
import type { AgZoomAnchorPoint } from 'ag-charts-community'; import { ChartAxisDirection } from 'ag-charts-core'; import type { BoxBounds, ZoomMinMax, ZoomState } from 'ag-charts-core'; export declare class ZoomAxisDragger { private coords?; private oldZoom?; update(event: { offsetX: number; offsetY: number; }, direction: ChartAxisDirection, anchor: AgZoomAnchorPoint, bbox: BoxBounds, zoom?: ZoomState, axisZoom?: ZoomMinMax): ZoomMinMax; stop(): void; private updateCoords; private updateZoom; }