Something like this maybe: ``` js $(window).on('resize', function() { var graphWidth, graphHeight; // compute graphWidth, graphHeight graph.force.size([graphWidth, graphHeight]); graph.force.start(); }); ```