Skip to content

Commit

Permalink
easier to see mass
Browse files Browse the repository at this point in the history
  • Loading branch information
coilysiren committed Nov 25, 2023
1 parent 7ae3b24 commit fc21362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/lib/dataviz.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export function initData(galaxyFrontend: galaxy.Frontend) {
return c.y * sizeModifier + margin.top;
})
.attr("r", function (c: galaxy.Cell) {
return c.mass;
return Math.log(c.mass);
})
.style("fill", "#69b3a2");
}

0 comments on commit fc21362

Please sign in to comment.