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

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

chart1.setGallery(Gallery.LINES);
chart1.setMarkerShape(MarkerShape.NONE);
chart1.setDataEditor(true); 
chart1.getSeries(3).setLineWidth((short) 3);

//Filling the chart1 with 4 series and 12 points
//The last series will have only 2 points
chart1.openData(COD.VALUES, 4, 6);
chart1.setValue(0, 0, 1.605);
chart1.setValue(1, 0, 0.866);
chart1.setValue(2, 0, 1.027);
chart1.setValue(3,0,Chart.HIDDEN);

chart1.setValue(0, 1, 1.726);
chart1.setValue(1, 1, 0.8921);
chart1.setValue(2, 1, 1.199);
chart1.setValue(3, 1, 1); 

chart1.setValue(0, 2, 1.772);
chart1.setValue(1, 2, 0.885);
chart1.setValue(2, 2, 1.056);
chart1.setValue(3, 2, 1);

chart1.setValue(0, 3, 1.802);
chart1.setValue(1, 3, 1.012);
chart1.setValue(2, 3, 0.982);
chart1.setValue(3, 3, Chart.HIDDEN);

chart1.setValue(0, 4, 1.792);
chart1.setValue(1, 4, 0.932);
chart1.setValue(2, 4, 1.034);
chart1.setValue(3, 4, 1);

chart1.setValue(0, 5, 1.654);
chart1.setValue(1, 5, 0.8902);
chart1.setValue(2, 5, 1.118);
chart1.setValue(3, 5, 1); 
chart1.closeData(COD.VALUES);

%>

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