Skip to main content
Version: Next

DependencyGraphTypes.RenderEdgeProps

Home > @backstage/core-components > DependencyGraphTypes > RenderEdgeProps

Properties of DependencyGraphTypes.RenderEdgeFunction for DependencyGraphTypes.DependencyEdge

Signature:

type RenderEdgeProps<T = {}> = {
edge: T & {
points: {
x: number;
y: number;
}[];
label?: string;
labeloffset?: number;
labelpos?: string;
width?: number;
height?: number;
weight?: number;
minlen?: number;
showArrowHeads?: boolean;
from?: string;
to?: string;
relations?: string[];
};
id: {
v: string;
w: string;
name?: string | undefined;
};
};