diff --git a/src/main/resources/web/js/views/topology.js b/src/main/resources/web/js/views/topology.js
index dee1461f68ec84c1f5675fe319354744c7beec29..a82098e1802d9f57af92524fcea805ac9c0386f4 100644
--- a/src/main/resources/web/js/views/topology.js
+++ b/src/main/resources/web/js/views/topology.js
@@ -25,8 +25,8 @@ window.TopologyView = Backbone.View.extend({
     render:function (eventName) {
         $(this.el).html(this.template());
         // code from D3 force-directed graph example since there's no other docs
-        var width = 500,
-          height = 400; // might as well make it square
+        var width = 900,
+          height = 900; // might as well make it square
         var color = d3.scale.category20();
         var force = d3.layout.force()
             .charge(-120)