@maxgraph/core
    Preparing search index...

    Interface EdgeMarkerRegistryInterface

    The definition of a registry that stores the MarkerFactoryFunctions and their configuration.

    0.20.0

    interface EdgeMarkerRegistryInterface {
        add(name: string, value: MarkerFactoryFunction): void;
        createMarker(
            canvas: AbstractCanvas2D,
            shape: Shape,
            type: StyleArrowValue,
            pe: Point,
            unitX: number,
            unitY: number,
            size: number,
            source: boolean,
            sw: number,
            filled: boolean,
        ): null | MarkerFunction;
        get(name: undefined | null | string): null | MarkerFactoryFunction;
        getName(value: null | MarkerFactoryFunction): null | string;
    }

    Hierarchy (View Summary)

    Index

    Methods