@joint/react
    Preparing search index...

    Interface CellVisibilityParams

    Context handed to a CellVisibility callback each time the paper decides whether to render a cell.

    interface CellVisibilityParams {
        graph: Graph;
        isMounted: boolean;
        model: Cell;
        paper: Paper;
    }
    Index

    Properties

    graph: Graph

    The graph the cell belongs to.

    isMounted: boolean

    Whether the cell currently has a view mounted in the paper.

    model: Cell

    The cell whose visibility is being decided.

    paper: Paper

    The paper rendering the cell.