d3-process-map
d3-process-map copied to clipboard
Update object layout when browser window is resized
Something like this maybe:
$(window).on('resize', function() {
var graphWidth, graphHeight;
// compute graphWidth, graphHeight
graph.force.size([graphWidth, graphHeight]);
graph.force.start();
});