diff --git a/client/src/components/dotplot/dot.js b/client/src/components/dotplot/dot.js index 5362c66e..21f5dab6 100644 --- a/client/src/components/dotplot/dot.js +++ b/client/src/components/dotplot/dot.js @@ -24,11 +24,12 @@ const Dot = (props) => { ); /* SUM REMAINING ELEMENTS */ /* TODO(colinmegill) #632 scale between correct dimensions */ - const paddingEquivalentToRowColumnIndexOffset = 0; + const paddingEquivalentToRowColumnIndexOffset = 8; const dotscale = d3 .scaleLinear() .domain([0, 1]) .range([0, rowColumnSize - paddingEquivalentToRowColumnIndexOffset]); + const _radius = dotscale(expressing / totalCells); return (