I am new to D3.js. In fact, I am just starting to learn it to implement it in a new prototype at work. So the problem I have is this:
I have a graph with connectivity from any one node to any other node (no cycles, however). So suppose I want to click/double click on a particular node, and then hover the mouse over another node, is it possible to highlight all the connecting paths between the two nodes whilst greying out the other links and nodes? Initially I thought that just hovering over over a node should trigger the highlighting of paths, but then I realized that in my case, all the links would be highlighted! So I struck upon the idea that I could select a node by clicking it, and then choose the other node by hovering on top of it.
Is this even feasible? Any alternatives would also be highly appreciated!