<%@page import="SoftwareFX.ChartFX.*"%>
<%
ChartServer chart1 = new ChartServer(application,request,response );
Axis axis = chart1.getAxisX();
axis.setStep((short) 1);
axis.setMinorStep((float) 0.1);
axis.setGridlines(true);
axis.getGrid().setColor(new java.awt.Color(65, 105, 225));
axis.getGrid().setStyle(LineStyle.DASH);
axis.setMinorTickMark(TickMark.CROSS);
axis.setMin((long) 35802); //long value for 01/7/98
axis.getLabelsFormat().setFormat(AxisFormat.DATE);
axis.setStaggered(true);
//Filling the chart1
chart1.setGallery(Gallery.BUBBLE);
chart1.setCylSides((short) 20);
chart1.setVolume((short) 100);
chart1.setMultipleColors(true);
%>
<%=chart1.getHtmlTag("450","280")%>
|