Options
Definition
export interface Options {
nodes?: nodegraph.NodeOptions;
edges?: nodegraph.EdgeOptions;
// How to handle zoom/scroll events in the node graph
zoomMode?: nodegraph.ZoomMode;
// How to layout the nodes in the node graph
layoutAlgorithm?: nodegraph.LayoutAlgorithm;
}