Is there any good open source library in Java which can be used to draw 3D dynamic charts, like JFreeChart does it for 2D?
A:
Can you define your use case, since JFreeChart can draw at least 3D line, bar and pie charts?
Heri
2009-09-09 15:09:27
Actually I want to plot a dynamic graph which takes values of (x,y,z). Now I want to draw a 3D chart , i.e. showing all three axis x,y,z. Is it possible in JFreeChart. If yes then how? Also I am having a litte trouble with JFreechart as my update frequency is quite high, 10 fps. Due to this my system is utilizing 100% CPU usage. But I was thinking to solve this matter somehow. Wht I currently need is a 3D chart
2009-09-10 04:22:46
JFreeChart can only draw 2D chart with a three-dimensional look, not real 3D chart as you want. I only know (but never used) http://sourceforge.net/projects/jplot3d/ for such cases, but unfortunately that's not really a chart library.
Heri
2009-09-10 08:18:17
+1
A:
If you're up to coding to a more fundamental api (ie you have to draw your own lines to represent the chart values), two choices are: 1. java3d.dev.java.net/ (A display list abstraction) 2. kenai.com/projects/jogl/pages/Home (A Java wrapper to OpenGL)
prochaine
2009-10-25 14:09:47
A:
Hi all, I suggest you try http://code.google.com/p/jzy3d, which will really help you to do what you want. Regards, Martin
Martin
2010-07-08 17:13:52