From e5397d7e67f8d51dbeb4595fc4f49b9cfda653b4 Mon Sep 17 00:00:00 2001 From: ziirish Date: Tue, 10 Nov 2015 20:12:33 +0100 Subject: [PATCH] fix: margins --- burpui/templates/js/client-report.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/burpui/templates/js/client-report.js b/burpui/templates/js/client-report.js index fb5474ec..e4cd6bf5 100644 --- a/burpui/templates/js/client-report.js +++ b/burpui/templates/js/client-report.js @@ -34,7 +34,7 @@ var _client = function() { .y(function(d) { return d[1] }) .useInteractiveGuideline(true) .color(d3.scale.category20c().range()) - .margin({bottom: 105, left: 80}) + .margin({bottom: 115, left: 100}) ; tmp.xAxis.showMaxMin(true).tickFormat(function(d) { return d3.time.format('%x %X')(new Date(d)) }).rotateLabels(-45); @@ -47,7 +47,7 @@ var _client = function() { .color(d3.scale.category10().range()) .x(function(d,i) { return i }) .y(function(d) { return d[1] }) - .margin({bottom: 105, left: 80}) + .margin({bottom: 115, left: 100, right: 80}) .focusEnable(false) ;