0

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

     Server1         Server2         Cluster
      |               |               |   
      |               |               |
   ========================================

1 Answer 1

1

Maybe you could look at protovis?

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

You have to do a little fiddling to make it work with jQuery. Any place in protovis where they use function you have to add the curly braces which have been omitted.

     var color = pv.Colors.category19().by(function(d){return d.group});
Sign up to request clarification or add additional context in comments.

1 Comment

Update for people finding this: Protovis is no longer under development, they replaced it with d3.js: d3js.org

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.