Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Charts module #143

Closed
wants to merge 11 commits into from
Prev Previous commit
Next Next commit
Change margins in hex density chart
  • Loading branch information
tlwr committed Jun 5, 2017
commit 594456856592d936711f52a5a6cde5cd937694d5
4 changes: 2 additions & 2 deletions src/core/operations/Charts.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ const Charts = {
.attr("viewBox", `0 0 ${dimension} ${dimension}`);

let margin = {
top: 0,
top: 10,
right: 0,
bottom: 30,
bottom: 40,
left: 30,
},
width = dimension - margin.left - margin.right,
Expand Down