#11099 Fix sunburst

This commit is contained in:
Daniel Maya 2023-05-03 16:44:07 +02:00
parent 5983333965
commit 8c96baf68f
1 changed files with 1 additions and 1 deletions

View File

@ -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]);