ag-charts-community
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
19 lines (18 loc) • 516 B
TypeScript
export declare class BBox {
x: number;
y: number;
width: number;
height: number;
private static noParams;
constructor(x: number, y: number, width: number, height: number);
isValid(): boolean;
dilate(value: number): void;
containsPoint(x: number, y: number): boolean;
render(ctx: CanvasRenderingContext2D, params?: {
resetTransform?: boolean;
label?: string;
fillStyle?: string;
lineWidth?: number;
strokeStyle?: string;
}): void;
}