From f5e8fb25f7b70285238e65a63c34c292d23065a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Mart=C3=ADnez=20Portela?= Date: Fri, 19 Aug 2022 19:36:42 +0200 Subject: [PATCH] Fill page with chart. --- static/graph_explorer.html | 2 ++ 1 file changed, 2 insertions(+) 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';