SIMPLERADAR.jsp 1.06 KB
Newer Older
Thitichaipun Wutthisak committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
<%@page import="ChartDirector.*" %>
<%
//The data for the chart
double[] data = {90, 60, 65, 75, 40};

//The labels for the chart
String[] labels = {"Speed", "Reliability", "Comfort", "Safety", "Efficiency"};

//Create a PolarChart object of size 450 x 350 pixels
PolarChart c = new PolarChart(450, 350);

//Set center of plot area at (225, 185) with radius 150 pixels
c.setPlotArea(225, 185, 150);

//Add an area layer to the polar chart
c.addAreaLayer(data, 0x9999ff);

//Set the labels to the angular axis as spokes
c.angularAxis().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">
    Simple Radar 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>