CODE:
									
<%@page import="SoftwareFX.ChartFX.*"%>
<%

ChartServer chart1 = new ChartServer(application,request,response );

chart1.setGallery(Gallery.LINES);
chart1.setMarkerShape(MarkerShape.NONE);
chart1.setChart3D(true);
chart1.setWallWidth((short) 2);
chart1.setCluster(true);
chart1.setVolume((short) 150);
chart1.setView3D(true);
chart1.setAngleX((short) 45);
chart1.setAngleY((short) 125);
chart1.setView3DDepth((short) 120);

//Filling the chart1 with 4 series and 12 points
chart1.openData(COD.VALUES, 4, 12);
chart1.setValue(0, 0, 1.605);
chart1.setValue(1, 0, 0.866);
chart1.setValue(2, 0, 1.027);
chart1.setValue(3, 0, 1.543);
chart1.setValue(0, 1, 1.726);
chart1.setValue(1, 1, 0.8921);
chart1.setValue(2, 1, 1.199);
chart1.setValue(3, 1, 1.382);
chart1.setValue(0, 2, 1.772);
chart1.setValue(1, 2, 0.885);
chart1.setValue(2, 2, 1.056);
chart1.setValue(3, 2, 1.332);
chart1.setValue(0, 3, 1.802);
chart1.setValue(1, 3, 1.012);
chart1.setValue(2, 3, 0.982);
chart1.setValue(3, 3, 1.532);
chart1.setValue(0, 4, 1.792);
chart1.setValue(1, 4, 0.932);
chart1.setValue(2, 4, 1.034);
chart1.setValue(3, 4, 1.439);
chart1.setValue(0, 5, 1.654);
chart1.setValue(1, 5, 0.8902);
chart1.setValue(2, 5, 1.118);
chart1.setValue(3, 5, 1.325);
chart1.setValue(0, 6, 1.576);
chart1.setValue(1, 6, 0.8711);
chart1.setValue(2, 6, 1.374);
chart1.setValue(3, 6, 1.544);
chart1.setValue(0, 7, 1.773);
chart1.setValue(1, 7, 0.8834);
chart1.setValue(2, 7, 1.447);
chart1.setValue(3, 7, 1.631);
chart1.setValue(0, 8, 1.771);
chart1.setValue(1, 8, 0.891);
chart1.setValue(2, 8, 1.4475);
chart1.setValue(3, 8, 1.6415);
chart1.setValue(0, 9, 1.774);
chart1.setValue(1, 9, 0.89);
chart1.setValue(2, 9, 1.448);
chart1.setValue(3, 9, 1.6365);
chart1.setValue(0, 10, 2.004);
chart1.setValue(1, 10, 0.8928);
chart1.setValue(2, 10, 1.2325);
chart1.setValue(3, 10, 1.4475);
chart1.setValue(0, 11, 1.784);
chart1.setValue(1, 11, 0.8926);
chart1.setValue(2, 11, 1.4365);
chart1.setValue(3, 11, 1.626);
chart1.closeData(COD.VALUES);

%>

<%=chart1.getHtmlTag("450","280")%>