Skip to content

Commit

Permalink
a little more conservative use of space
Browse files Browse the repository at this point in the history
  • Loading branch information
meren committed Oct 5, 2017
1 parent 6f2d564 commit 92fedf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions anvio/data/interactive/js/contigs-plot.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
function draw_n_values_plot(container, stats) {
var svg = d3.select(container)
.append('svg')
.attr('viewBox', '0 0 800 300');
.attr('viewBox', '0 50 800 220');

var g = svg.append("g")
.attr("transform", "translate(0, 60)");
Expand Down Expand Up @@ -101,7 +101,7 @@ function draw_n_values_plot(container, stats) {
function draw_gene_counts_chart(container, gene_counts) {
var svg = d3.select(container)
.append('svg')
.attr('viewBox', '0 0 800 300');
.attr('viewBox', '0 20 800 240');

var g = svg.append("g")
.attr("transform", "translate(0, 60)");
Expand Down

0 comments on commit 92fedf4

Please sign in to comment.