@gravity-ui/graph
Version:
Modern graph editor component
12 lines (11 loc) • 311 B
TypeScript
export declare function getLabelCoords(x1: number, // source anchor x
y1: number, // source anchor y
x2: number, // target anchor x
y2: number, // target anchor y
width: number, // label width
height: number, // label height
GRID_SIZE: number): {
x: number;
y: number;
aligment: CanvasTextAlign;
};