Added more width to widget container

This commit is contained in:
Arturo Gonzalez 2017-04-26 13:27:53 +02:00
parent 40a42a6a29
commit 504665aaf0
1 changed files with 2 additions and 2 deletions

View File

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