mirror of
https://github.com/gchq/CyberChef
synced 2025-01-09 02:58:46 +00:00
Tweak extent of hex density charts
This commit is contained in:
parent
247e9bfbde
commit
49ea532cdc
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ const Charts = {
|
||||||
let xExtent = d3.extent(hexPoints, d => d.x),
|
let xExtent = d3.extent(hexPoints, d => d.x),
|
||||||
yExtent = d3.extent(hexPoints, d => d.y);
|
yExtent = d3.extent(hexPoints, d => d.y);
|
||||||
xExtent[0] -= 2 * packRadius;
|
xExtent[0] -= 2 * packRadius;
|
||||||
xExtent[1] += 2 * packRadius;
|
xExtent[1] += 3 * packRadius;
|
||||||
yExtent[0] -= 2 * packRadius;
|
yExtent[0] -= 2 * packRadius;
|
||||||
yExtent[1] += 2 * packRadius;
|
yExtent[1] += 2 * packRadius;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue