Reputation: 279
I want to plot a 3-d line graph having many data points. Each data point represent a (x,y,z) combination. Does anyone know about any javascript library that can plot these points in 3-d plane?
Thanks in advance.
Upvotes: 2
Views: 2879
Reputation: 435
How about z3d.js, it is easy to use. For more complex graphs, you may consider d3.js . Here is a similar question about d3.js : 3 dimension (X, Y and Z) graph using D3.js ?
Upvotes: 2