I am new to jfreecharts. I have 3 functions and their sum plotted in one chart. This works fine (like http://www.java2s.com/Code/Java/Chart/JFreeChartXYLogAxesDemo.htm except that my x axis is linear).
Now I would like to vary one parameter of these function over a small range. I would like to see something like http://www.originlab.com/www/resources/graph_gallery/images_galleries/Choe_as_3D_Waterfall_500px.gif or this bar graph http://www.statsref.com/HTML/bars3d_demo.png where each xy plane would have the 4 functions plotted on it.
I could perhaps use some kind of bar chart to combine the 4 functions like http://help.infragistics.com/Help/NetAdvantage/WinForms/2012.2/CLR4.0/html/Images/Chart_Working_2D_Stacked_Column_Chart_Data_01.png, so a stacked series of these might work.
Failing that, how would one get jfreechart to display an matrix chart? Is there some stuff built in to jfreechart or does one have to make a bunch of chart panels and add them to a panel?
Thanks