From 8c96baf68f58b0a61f91dd42146a6d2d7eea5e07 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Wed, 3 May 2023 16:44:07 +0200 Subject: [PATCH] #11099 Fix sunburst --- pandora_console/include/graphs/pandora.d3.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js index 5c8b59013b..07fa7f009e 100644 --- a/pandora_console/include/graphs/pandora.d3.js +++ b/pandora_console/include/graphs/pandora.d3.js @@ -826,7 +826,7 @@ function sunburst(recipient, data, width, height, tooltip = true) { height = width; } - var radius = Math.min(width, height) / 2; + var radius = Math.min(width, height) / 2 - 40; var x = d3.scale.linear().range([0, 2 * Math.PI]);