简体   繁体   中英

Show only the relationships of selected node in network visualization graph

I have imeplemented a network graph like below image using vis.js library. 在此处输入图片说明

When a user clicks/double-clicks on particular node I want to show the relationships of only that particular node.

Is there any way to do that using vis.js library. If not is there any other graph visualization library which I can make use of?

VIS network sample

You can filter the nodes which are shown on the network by converting them into a DataView and adding a subscription to the network to watch for double clicks (which will allow you to trigger the filter). Details can be found here with an example here .

The list of events which you can subscribe to can be found here with details of the object passed from the event.

Hope this helps!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM