Does anyone know any practical example in D3-js to model a node/link graph from datatables ?
What I mean is once a user click on a specific table-row, the related graph is displayed below showing source & target node (as per row information) and the connecting link - I understood should be a mouse click event that calls a handler at very very high level....
Example of Table row:
Source - Target - Value : A B 10
Example of datatables :https://datatables.net/examples/advanced_init/events_live.html Example of forced directed graph :http://bl.ocks.org/ericcoopey/6c602d7cb14b25c179a4 Thx in advance for the help.