admin管理员组

文章数量:1415664

Iam trying to build network visualisation graphs.I want to have search for nodes,callbacks for nodes click and actions,visually appealing,simpler and lighter and faster interface. Also it should scale up. I tried googling anf figured out d3.js and sigma js. Which one is more good for my usecase ?

Iam trying to build network visualisation graphs.I want to have search for nodes,callbacks for nodes click and actions,visually appealing,simpler and lighter and faster interface. Also it should scale up. I tried googling anf figured out d3.js and sigma js. Which one is more good for my usecase ?

Share Improve this question asked Oct 5, 2015 at 19:39 melvil jamesmelvil james 6111 gold badge8 silver badges19 bronze badges 1
  • 3 opinion based question. – somename Commented Oct 5, 2015 at 20:09
Add a ment  | 

1 Answer 1

Reset to default 7

D3.js:

  • won't scale up to more than a couple of hundreds of nodes/edges (SVG only)
  • easy to use and customize if you aleasy know D3

Sigma.js:

  • scales up to thousands of nodes/edges (using Canvas or WebGL renderers)
  • easy to use and customize
  • easy node/edge interactions
  • lots of cool existing plugins

I strongly believe (and contributed to) a fork of Sigma.js called Linkurious.js. It fixes lots of issues and adds lots of cool plugins that make building network visualizations really easy.

本文标签: javascriptD3js or Sigmajs is more good for network visualisationStack Overflow