ChartDirector除了一個英文件的幫助以外
代碼如下:
<%@ page language=
pageEncoding=
<%
request
//以兩個系列數據為例
double[] data = {
double[] data
//數據列名
String[] labels = {
//生成圖片大小
XYChart c = new XYChart(
//圖標題
c
//支持中文
c
//圖表在圖片中的定位及區域大小
c
//=========================
//加入單個數據
//BarLayer layer = c
//=========================
//加入多個BAR數據(多個datasets)
BarLayer layer = c
layer
layer
//
layer
//設置BAR邊框形式
layer
//bar寬度
layer
//設置BAR邊框顏色
//layer
//圖例形式
layer
//每個BAR頂部加入數據顯示
layer
//設置BAR底部的名稱顯示
TextBox t = c
//名稱文字大小
t
//加圖例
//LegendBox legend = c
//legend
//圖例位置
c
//output the chart
String chart
//include tool tip for the chart
String imageMap
%><!DOCTYPE HTML PUBLIC
<html>
<head>
<meta http
<title>圖表測試</title>
</head>
<body>
<h
<hr color=
<br>
<img src=
usemap=
<map name=
</body>
</html>
From:http://tw.wingwit.com/Article/program/Java/hx/201311/27101.html