Type Alias BoxSelectInteractionCallbacks
BoxSelectInteractionCallbacks: {
onBoxSelect?: (({ nodes, rels }: {
nodes: Node[];
rels: Relationship[];
}, event: MouseEvent) => void) | boolean;
onBoxStarted?: ((event: MouseEvent) => void) | boolean;
}
Type declaration
OptionalonBoxSelect?: (({ nodes, rels }: {
nodes: Node[];
rels: Relationship[];
}, event: MouseEvent) => void) | boolean
OptionalonBoxStarted?: ((event: MouseEvent) => void) | boolean
Callbacks for the box select interaction handler.