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

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

Axis axis = chart1.getAxisY();
axis.setMax((short)100);
axis.setMin((short) 0);
axis.setStep((short) 20);
axis.getLabelsFormat().setFormat(AxisFormat.CURRENCY); 
axis.setGridlines(true);
axis.getGrid().setColor(new java.awt.Color(106, 90, 205));
axis.setMinorStep((short) 2);
axis.getMinorGrid().setColor(new java.awt.Color(255, 0, 0));
axis.setMinorTickMark(TickMark.OUTSIDE);
 
chart1.setGallery(Gallery.BUBBLE);
chart1.setCylSides((short) 20);
chart1.setVolume((short) 100);
chart1.setMultipleColors(true);

%>

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