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

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

chart1.setAxesStyle(AxesStyle.MATH);
// The X axis is drawn with the color used for the Y grid and viceversa
// so typically you will set them both to the same color
chart1.getAxisY().getLine().setColor(new java.awt.Color(255, 0, 0));
chart1.getAxisX().getLine().setColor(new java.awt.Color(255, 0, 0));

// Adjust axis width
chart1.getAxisY().getLine().setWidth((short) 2);
chart1.getAxisX().getLine().setWidth((short) 2);

%>

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