<%@page import="ChartDirector.*" %>
<%
//The data for the bar chart
double[] data = {85, 156, 179.5, 211, 123};

//The labels for the bar chart
String[] labels = {"Mon", "Tue", "Wed", "Thu", "Fri"};

//The colors for the bar chart
int[] colors = {0xb8bc9c, 0xa0bdc4, 0x999966, 0x333366, 0xc3c3e6};

//Create a XYChart object of size 260 x 220 pixels
XYChart c = new XYChart(260, 220);

//Set the background color of the chart to gold (goldGradient). Use a 2 pixel 3D
//border.
c.setBackground(c.gradientColor(Chart.goldGradient), -1, 2);

//Add a title box using 10 point Arial Bold font. Set the background color to
//blue metallic (blueMetalGradient). Use a 1 pixel 3D border.
c.addTitle("Daily Network Load", "arialbd.ttf", 10).setBackground(
    c.gradientColor(Chart.blueMetalGradient), -1, 1);

//Set the plotarea at (40, 40) and of 200 x 150 pixels in size
c.setPlotArea(40, 40, 200, 150);

//Add a multi-color bar chart layer using the given data and colors. Use a 1
//pixel 3D border for the bars.
c.addBarLayer3(data, colors).setBorderColor(-1, 1);

//Set the x axis labels using the given labels
c.xAxis().setLabels(labels);

//output the chart
request.getSession().setAttribute("chart1", c.makeChart2(Chart.PNG));
%>
<html>
<body topmargin=0 leftmargin=5 rightmargin=0 marginwidth=5 marginheight=0>
<div style="font-size:18pt; font-family:verdana; font-weight:bold">
    Multi-Color Bar Chart
</div>
<hr color="#000080">
<div style="font-size:10pt; font-family:verdana">
    <a href="VIEWSOURCE.jsp?file=<%=request.getServletPath()%>">
        View Chart Source Code
    </a>
</div>
<br>
<img src="chart1.chart?no_cache=<%=Chart.getUniqueId()%>">
</body>
</html>