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

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

chart1.setGallery(Gallery.LINES);
Axis axis = chart1.getAxisY();
axis.setStep((short) 20);
axis.setMax((short) 100);
axis.setMin((short) 0);

axis.setStyle(axis.getStyle() | AxisStyle.INTERLACED);
axis.setGridlines(true);
axis.getGrid().setColor(new java.awt.Color(135, 206, 250));

%>

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