Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

3D radar chart in JavaScript

Is there a JavaScript library that allows you to visualize Radar Chart (aka Spider Chart) in 3D form along with the rotation.

What I mean by that is to visualize this kind of chart in 3D by adding time as a coordinate. The end result will be a 3D sphere that is not symmetrically shaped. For example:

enter image description here

I tried to search all different 3D JavaScript libraries but was not able to find anything that will let me do it easily without creating it from scratch.

like image 355
Maksim Avatar asked Feb 18 '26 10:02

Maksim


1 Answers

What about D3? There aren't many chart types that can't be visualized with it.

More information at GitHub and Wikipedia.

like image 54
trejder Avatar answered Feb 20 '26 23:02

trejder