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

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

// In this case we are hardcoding the labels
// but it would be the same if the labels are retrieved from the database
chart1.getSerLeg().setItem(0, "Product A");
chart1.getSerLeg().setItem(1, "Product B");

// Show the Series Legend Window
chart1.setSerLegBox(true);

%>

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