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

Dendrogram link/arc issue #31

Closed
kingo999 opened this issue Jan 21, 2017 · 1 comment
Closed

Dendrogram link/arc issue #31

kingo999 opened this issue Jan 21, 2017 · 1 comment

Comments

@kingo999
Copy link

Hi Tim,
Great service ! you're examples worked out of the box :-)
I'm trying to implement the D4 version of a cluster dendrogram (http://bl.ocks.org/mbostock/4063570).
However, I'm running into a problem which most likely isn't related to the service but I'm hoping you can help.
In my implementation, the links between nodes are filled on.
I've attached the source and screen shot of the issue.
Hope you can shed some light on this.
Dave
capture1
d3Component.txt

@tomwanzek
Copy link
Owner

As you suggested, is not an issue with the service. So in principle, stackoverflow should be a better place for this kind of question.

However, in short, your implementation likely did not implement the styling applied to the links in the referenced bl.ock. I.p., the style rule for fill: none is missing, e.g.:

.link {
  fill: none;
  stroke: #555;
  stroke-opacity: 0.4;
  stroke-width: 1.5px;
}

Hope this solves your problem, otherwise, please use SO for follow-up. Thanks for understanding 😄 . T

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

2 participants