I am trying to create a simple graph and i wanted to add nodes at specific position.
const graph = new dagreD3.graphlib.Graph().setGraph({})
.setDefaultEdgeLabel(function () {
return {}
})
graph.setNode('a', {label: 'a', height: 20, width: 40})
The setNode is creating a node, is there anyway that i can specify the position?