3D Graphing libraries

Hello,

I am working on gathering data from a LIDAR sensor and wanted to know if there are any plugins that I can use to render a 3D graph like plotly js in react. I already tried to use the plotly plugin available in grafana but it was not rendering as intended.

Thank You

Which 3d plotty vis did you have in mind?

There is also this grafana plugin

2 Likes

Thank you for the reply, The 3D visualization that I want are a 3d mesh, 3d scatter and a 3d surface graphs, I tried the apache e-charts plugin but they do not support 3d mesh graphs. Are there any other graphing plugins that support 3d graphs?

Could you Show us the plotty graph you want to use?

Right now I have it rendered in my react application and it looks like this :


This is supposed to represent a silo, the kind that stores grains, the outer surface is made up of a cone at the top, a cylinder in the middle and a circular disk at the bottom, inside the silo I have used a 3d mesh with which I am calculating all the scatter points below,

The plot with just the mesh looks like this :

1 Like

try this plugin

with this data


// Generating random data..
a=[]; b=[]; c=[];
for(i=0;i<50;i++)
  {
    var a_ = Math.random(); 
    a.push(a_);
    
    var b_ = Math.random(); 
    b.push(b_);
    
    var c_ = Math.random(); 
    c.push(c_);
  }
// Plotting the mesh
var data=[
    {
      opacity:0.8,
      color:'rgb(300,100,200)',
      type: 'mesh3d',
      x: a,
      y: b,
      z: c,
    }
];

return {
  data : data
}

1 Like