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

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

// Fix the random data so chart always look the same
chart1.setTypeEx(chart1.getTypeEx() | ChartTypeEx.RANDOM_FIXED);

SoftwareFX.ChartFX.Annotation.AnnotationX annot = new SoftwareFX.ChartFX.Annotation.AnnotationX();
SoftwareFX.ChartFX.Annotation.AnnotationCircle circle = new SoftwareFX.ChartFX.Annotation.AnnotationCircle();
annot.getList().add(circle);
chart1.getExtensions().add(annot);
circle.setColor(java.awt.Color.white);
circle.setHeight(40);
circle.setWidth(40);
circle.attach(3, 70);
circle.getBorder().setColor(java.awt.Color.red);

%>

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