I'm trying to customize an example of Mike Bostock's Hierarchical Edge Bundling:
So far I've been able to generate what think is an equivalent json file with my data but I haven't been able to make it show.
In the console I get the following error:
TypeError: n is undefined
and the following warning:
mutating the [[Prototype]] of an object will cause your code to run very slowly; instead create the object with the correct initial [[Prototype]] value using Object.create
I have tried in different browsers running a local server to no avail. I also found these questions which didn't solve the problem.
You can find my code and altered json in this gist.
Any help will be greatly appreciated.
I'm trying to customize an example of Mike Bostock's Hierarchical Edge Bundling:
So far I've been able to generate what think is an equivalent json file with my data but I haven't been able to make it show.
In the console I get the following error:
TypeError: n is undefined
and the following warning:
mutating the [[Prototype]] of an object will cause your code to run very slowly; instead create the object with the correct initial [[Prototype]] value using Object.create
I have tried in different browsers running a local server to no avail. I also found these questions which didn't solve the problem.
You can find my code and altered json in this gist.
Any help will be greatly appreciated.
Share Improve this question edited May 23, 2017 at 12:16 CommunityBot 11 silver badge asked Aug 22, 2014 at 18:11 eclarkeclark 8197 silver badges16 bronze badges 4- Make sure your cdn is linking and your data is hosted locally. – Union find Commented Aug 23, 2014 at 2:16
- I'm running it on local host and my data is hosted locally. – eclark Commented Aug 26, 2014 at 0:18
- Are you linking to an external url / hosting the d3 script yourself? You are probably not connecting to the external url. – Union find Commented Aug 26, 2014 at 0:18
- Thanks. I've tried hosting the d3 script myself and the results are the same. I'm inclined to think that's not the problem because I can get the original json (d3 depedencies) to work. – eclark Commented Aug 27, 2014 at 15:50
1 Answer
Reset to default 9I've been trying to debug this error all morning, and finally figured it out.
Sample:
https://gist.github./mbostock/1044242
When it looks through the json array, every single imports must have a valid entry. In the example, if you delete the any line of that JSON array you will get the "TypeError: n is undefined"
The only way I found it was by copying the JSON file, and then replacing all the name properties with blank spaces. This eventually allowed me to find the one import that did not exist because I had an error in formatting.
Hope this helps.