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

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

chart1.openData(COD.VALUES, 1, 4);
chart1.getValue().setItem(0, 0, 1245);
chart1.getValue().setItem(0, 1, 720);
chart1.getValue().setItem(0, 2, 1412);
chart1.getValue().setItem(0, 3, 1054);
chart1.closeData(COD.VALUES);

chart1.getAxisY().getLabelsFormat().setFormat(AxisFormat.NUMBER);
chart1.getAxisY().getLabelsFormat().setDecimals((short) 1);

%>

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