My code is based on the D3.js Indented tree example.
I want straight links instead of the curved links between parent/child-objects.
I understand this has something to do with the following code, however, I can't find a solution. I want the links to be straight with a 90-degree turn.
var diagonal = d3.svg.diagonal()
.projection(function(d) { return [d.y, d.x]; });