ag-charts-enterprise
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
18 lines (17 loc) • 425 B
TypeScript
import type { AgZoomAnchorPoint } from 'ag-charts-community';
export type ZoomCoords = {
x1: number;
y1: number;
x2: number;
y2: number;
};
export interface ZoomProperties {
anchorPointX: AgZoomAnchorPoint;
anchorPointY: AgZoomAnchorPoint;
enabled: boolean;
independentAxes: boolean;
isScalingX: boolean;
isScalingY: boolean;
keepAspectRatio: boolean;
scrollingStep: number;
}