mirror of
https://github.com/gchq/CyberChef
synced 2025-01-07 18:18:47 +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),
|
||||
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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue