Tweak extent of hex density charts

This commit is contained in:
toby 2017-06-06 09:46:46 -04:00
parent 247e9bfbde
commit 49ea532cdc
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ const Charts = {
let xExtent = d3.extent(hexPoints, d => d.x),
yExtent = d3.extent(hexPoints, d => d.y);
xExtent[0] -= 2 * packRadius;
xExtent[1] += 2 * packRadius;
xExtent[1] += 3 * packRadius;
yExtent[0] -= 2 * packRadius;
yExtent[1] += 2 * packRadius;