Tree Diagrams click functions conflicting

219 Views Asked by At

I have two trees on the same page. The first is http://bl.ocks.org/1249394, and the other is http://bl.ocks.org/2503502. I followed the examples on these 2 links for my trees, with some alterations of course. I have included both on the same page. However the click functions seem to be conflicting. The tree at http://bl.ocks.org/1249394 works great, but the tree at http://bl.ocks.org/2503502 generates the tree with the correct data, but then when I click the root node to collapse, the child nodes data changes to that of the child nodes data for the first tree at http://bl.ocks.org/1249394. How do I fix this conflict?

1

There are 1 best solutions below

4
On

Have you tried just naming the click handlers differently? This looks like you've got identically-named functions that might be in the same scope, so you should either

  • make sure each graph is in a different scope (e.g. enclose all the code for each in different functions), or

  • make sure all the functions on the page have unique names, or

  • both.