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

View File

@ -1331,7 +1331,7 @@ function Gauge(placeholderName, configuration, font)
function print_phases_donut (recipient, phases) { function print_phases_donut (recipient, phases) {
var svg = d3.select(recipient) var svg = d3.select(recipient)
.append("svg") .append("svg")
.attr("width", 500) .attr("width", 600)
.attr("height", 300) .attr("height", 300)
.append("g"); .append("g");
@ -1342,7 +1342,7 @@ function print_phases_donut (recipient, phases) {
svg.append("g") svg.append("g")
.attr("class", "lines"); .attr("class", "lines");
var width = 500, var width = 550,
height = 300, height = 300,
radius = Math.min(width, height) / 2; radius = Math.min(width, height) / 2;