I am trying to fix the position of two nodes. They should be on top of each other, 400px apart in the y-dimension.
var edges = [{
    id:"1",
    fixed: {x:true, y:true},
    x:0,y:-200
},{
    id:"2",
    fixed: {x:true, y:true},
    x:0,y:200
}, ...];
However, the position are not fixed and wander all over the place. This is the corresponding fiddle.
Any ideas?