UNPKG

ag-charts-enterprise

Version:

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

18 lines (17 loc) 520 B
import type { BoxPlotGroup } from './boxPlotGroup'; import type { BoxPlotNodeDatum } from './boxPlotTypes'; export declare function prepareBoxPlotFromTo(isVertical: boolean): { from: { scalingX: number; scalingY: number; }; to: { scalingX: number; scalingY: number; }; }; export declare function resetBoxPlotSelectionsScalingCenterFn(isVertical: boolean): (node: BoxPlotGroup, datum: BoxPlotNodeDatum) => { scalingCenterY: number; } | { scalingCenterX: number; };