<%@page import="SoftwareFX.ChartFX.*"%>
<%
ChartServer chart1 = new ChartServer(application,request,response );
Axis axis = chart1.getAxisY();
axis.setMax(0);
axis.setMin(100);
chart1.setGrid(ChartGrid.HORZ);
chart1.setBorder(true);
%>
<%=chart1.getHtmlTag("450","280")%>
|