Skip to content

Commit

Permalink
Merge pull request zalando#104 from bocytko/fix-margins
Browse files Browse the repository at this point in the history
Adds more space in legend to avoid overlapping entries
  • Loading branch information
bocytko authored Dec 21, 2022
2 parents 61c710e + 6699625 commit d1ee4bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/radar.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ function radar_visualization(config) {
}

function legend_transform(quadrant, ring, index=null) {
var dx = ring < 2 ? 0 : 120;
var dx = ring < 2 ? 0 : 140;
var dy = (index == null ? -16 : index * 12);
if (ring % 2 === 1) {
dy = dy + 36 + segmented[quadrant][ring-1].length * 12;
Expand Down

0 comments on commit d1ee4bd

Please sign in to comment.