diff --git a/static/graph_explorer.html b/static/graph_explorer.html
index 26a8c1c..e7c68ce 100644
--- a/static/graph_explorer.html
+++ b/static/graph_explorer.html
@@ -269,6 +269,8 @@ function ForceGraph({
linkLabel: (d) => { const e = edges[d.index]; if (e.relation) { return e.relation; } else { return ''; } },
});
holder.appendChild(chart);
+ chart.height = '100vh';
+ chart.width = '100vw';