interface BoundingBoxOptions {
    includeEdges?: boolean;
    includeLabels?: boolean;
    includeMainLabels?: boolean;
    includeNodes?: boolean;
    includeOverlays?: boolean;
    includeSourceLabels?: boolean;
    includeTargetLabels?: boolean;
}

Properties

includeEdges?: boolean

A boolean indicating whether to include edges in the bounding box (default true).

includeLabels?: boolean

A boolean indicating whether to include labels in the bounding box (default true).

includeMainLabels?: boolean

A boolean indicating whether to include main (node or edge) labels in the bounding box (default true).

includeNodes?: boolean

A boolean indicating whether to include nodes in the bounding box (default true).

includeOverlays?: boolean

A boolean indicating whether to include overlays (such as the one which appears when a node is clicked) in the bounding box (default true).

includeSourceLabels?: boolean

A boolean indicating whether to include (edge) source-labels in the bounding box (default true).

includeTargetLabels?: boolean

A boolean indicating whether to include (edge) target-labels in the bounding box (default true).