UNPKG

@maxgraph/core

Version:

maxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.

12 lines (11 loc) 490 B
import type { EdgeStyleFunction } from '../../../types.js'; /** * Implements a horizontal elbow edge. * * This EdgeStyle is registered under `sideToSideEdgeStyle` in {@link EdgeStyleRegistry} when using {@link Graph} or calling {@link registerDefaultEdgeStyles}. * * **IMPORTANT**: When registering it manually in {@link EdgeStyleRegistry}, the following metadata must be used: * - handlerKind: 'elbow' * - isOrthogonal: true */ export declare const SideToSide: EdgeStyleFunction;