@joint/react
    Preparing search index...

    Interface CustomHighlighterProps<Highlighter>

    interface CustomHighlighterProps<
        Highlighter extends
            dia.HighlighterView.Options = dia.HighlighterView.Options,
    > {
        children?: ReactNode;
        isHidden?: boolean;
        onCreateHighlighter: OnAddHighlighter<Highlighter>;
        options: Highlighter;
    }

    Type Parameters

    • Highlighter extends dia.HighlighterView.Options = dia.HighlighterView.Options
    Index

    Properties

    children?: ReactNode

    Child elements to render inside the highlighter.

    isHidden?: boolean

    If the highlighter is disabled or not.

    onCreateHighlighter: OnAddHighlighter<Highlighter>

    Callback function should return any highlighter.

    The cell view to which the highlighter is attached.

    The SVG element to which the highlighter is attached.

    The ID of the highlighter.

    The options for the highlighter.

    The created highlighter.

    options: Highlighter

    This should be memoized