I am using d3 to plot graphs. Below method works absolutely fine for IE10+, Chrome and Firefox but on IE9, it throws javascript error that "SCRIPT5007: Unable to get property 'nodes' of undefined or null"
In my view, workaround will be to send json data directly to the call rather than accessing json file through URL and then creating graph in callback.
If anyone knows any solution for IE9, please let me know.
d3.json(url, function (error, graph) {
force
.nodes(graph.nodes)
.links(graph.links)
.start();
...
}