i am new to this forum. At the moment i search for a 3d Scatterplot engine / library for java script or SVG. Like this:
It is importent that you can rotate it to observe the point cloud. A nice feature would be to define a color for each point.
i am new to this forum. At the moment i search for a 3d Scatterplot engine / library for java script or SVG. Like this:
It is importent that you can rotate it to observe the point cloud. A nice feature would be to define a color for each point.
Share Improve this question edited Nov 9, 2012 at 9:01 matthias krull 4,4273 gold badges35 silver badges54 bronze badges asked Nov 9, 2012 at 8:40 user1811631user1811631 311 silver badge2 bronze badges3 Answers
Reset to default 1SVG is a graphics format you can use for rendering the plot. To calculate your plot you need Javascript. You create the plot by generating SVG with Javascript, don't mix this up… There is also the <canvas>
tag that provides a drawing context, it could make a better performance if you have very much points to show.
Perhaps three.js or d3.js can help you to implement this. There are also a lot Javascript chart libraries out there maybe there is one the exactly does what you want.
good luck…
Now, April 2013 and we have one
From here : http://dexvis./vis/blog/2013/apr/dc3/examples/ScatterPlot3D1.html
it is implemented using d3js and Three.js and really smooth altough it is just a prototype.
Check it out!
You can visit Javascript library LightingchartJS. It’s been built with WebGL, so GPU assists in the rendering better than in typical HTML5/Canvas based chart libraries. It provide interactive example for 3D scatter chart with more than 4800 data points with great performance with rotate camera angle.
For more information you can check out our interactive examples as well.
Full disclosure: I am a developer for LightningChart, I think you may find this very useful.