summaryrefslogtreecommitdiff
path: root/code/errorvis.js
diff options
context:
space:
mode:
Diffstat (limited to 'code/errorvis.js')
-rw-r--r--code/errorvis.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/code/errorvis.js b/code/errorvis.js
index 9cd87f4..03c5eba 100644
--- a/code/errorvis.js
+++ b/code/errorvis.js
@@ -16,7 +16,7 @@ var ErrorVis = (function() {
this.svgContainer
.style("margin-top", "1.5em")
.style("margin-bottom", "1em")
- .style("height", "100%")
+ .style("height", "75%") // TODO find optimal height
.style("width", "100%");
this.spinner = this.container.append("div")
@@ -82,6 +82,7 @@ var ErrorVis = (function() {
.domain(d3.extent(this.data));
var xAxis = d3.svg.axis()
+ .tickFormat("")
.scale(this.scalerX);
var yAxis = d3.svg.axis()
.orient("left")