d3graph
d3graph copied to clipboard
Support for 3-dimensional layout
Networkx supports 3D network layouts, e.g. cords = nx.spring_layout(G, dim = 3, ...)
Any plans of adding support for this? I'm not too familiar with D3 but seems like it should be possible.
Do you have an example of D3 doing it? It would be good to see what output you are looking for.
Not at the moment but that would be really awesome to have! I am going to put it on my wishlist.
So, the closest thing would probably be https://github.com/Niekes/d3-3d for D3. Something like their 3D scatter plot, maybe?
A similar approach is used in Plotly - Essentially using a 3D scatterplot to visualize NetworkX networks. Not sure whether this is the way to go for D3.