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

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

Stripe stripe = chart1.getStripe(0);
stripe.setFrom((short) 20);
stripe.setTo((short) 30);
stripe.setColor(new java.awt.Color(192, 192, 255));
stripe.setAxis(AxisItem.Y);

stripe = chart1.getStripe(1);
stripe.setFrom((short) 3);
stripe.setTo((short) 4);
stripe.setColor(new java.awt.Color(128, 255, 128));
stripe.setAxis(AxisItem.X);

chart1.setGallery(Gallery.CURVE);
chart1.setMarkerShape(MarkerShape.CIRCLE); 
chart1.setMarkerSize((short) 4);

%>

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