From 504665aaf06283693cb423450d3089c1b3f63fba Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Wed, 26 Apr 2017 13:27:53 +0200 Subject: [PATCH] Added more width to widget container --- pandora_console/include/graphs/pandora.d3.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js index 8abf2697c3..f569f67587 100644 --- a/pandora_console/include/graphs/pandora.d3.js +++ b/pandora_console/include/graphs/pandora.d3.js @@ -1331,7 +1331,7 @@ function Gauge(placeholderName, configuration, font) function print_phases_donut (recipient, phases) { var svg = d3.select(recipient) .append("svg") - .attr("width", 500) + .attr("width", 600) .attr("height", 300) .append("g"); @@ -1342,7 +1342,7 @@ function print_phases_donut (recipient, phases) { svg.append("g") .attr("class", "lines"); - var width = 500, + var width = 550, height = 300, radius = Math.min(width, height) / 2;