Network diagram using javascript

I have a database table containing network information (servers, clusters, etc.). Is there a javascript library to display this information (after converting it to json or xml) in the network bus topology model?

Server1 Server2 Cluster | | | | | | ======================================== 
0
source share
1 answer

Maybe you could take a look at the protovites?

http://mbostock.github.com/protovis/

You need to play a little for it to work with jQuery. Anywhere in the protovis where they use the function, you must add curly braces that have been omitted.

  var color = pv.Colors.category19().by(function(d){return d.group}); 
+1
source

Source: https://habr.com/ru/post/917394/


All Articles