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

Margin around map #142

Open
vanfleet66 opened this issue Jul 2, 2023 · 0 comments
Open

Margin around map #142

vanfleet66 opened this issue Jul 2, 2023 · 0 comments

Comments

@vanfleet66
Copy link

vanfleet66 commented Jul 2, 2023

Hi, first I want to thank you for all the amazing work you have done on this d3-celestial library.

I had a question about the 16x16 margins you are adding around the map. in the getWidth() function it calculates the width of the map from the parent then it subtracts this margin. Is there any way around this? I would like the parent component to control these margins and not have them added in. Thanks!

function getWidth() {
var w = 0;
if (isNumber(cfg.width) && cfg.width > 0) w = cfg.width;
else if (parent) w = parent.getBoundingClientRect().width - margin[0] *2; <---
else w = window.getBoundingClientRect().width - margin[0]*2; <---
//if (isNumber(cfg.background.width)) w -= cfg.background.width;
return w;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant