JFreeChart?chart?=null;
成都創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站設(shè)計、成都做網(wǎng)站、額爾古納網(wǎng)絡(luò)推廣、微信小程序開發(fā)、額爾古納網(wǎng)絡(luò)營銷、額爾古納企業(yè)策劃、額爾古納品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎;成都創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供額爾古納建站搭建服務(wù),24小時服務(wù)熱線:18980820575,官方網(wǎng)址:www.cdcxhl.com
PiePlot?pieplot?=?(PiePlot)?chart.getPlot();//獲取圖片對象
//?圖片中顯示百分比:自定義方式,{0}?表示選項,?{1}?表示數(shù)值,?{2}?表示所占比例?,小數(shù)點后兩位
piePlot.setLabelGenerator(new?StandardPieSectionLabelGenerator(
"{0}({2})",?NumberFormat.getNumberInstance(),
new?DecimalFormat("0.00%")));
以上為關(guān)鍵代碼。需要通過setLableGenerator方法設(shè)置標(biāo)簽顯示格式。StandardPieSectionLabelGenerator對象構(gòu)造方法中,{0},{2}都將被替換為相應(yīng)字符,{0}顯示的是花生、大豆等信息,{2}顯示的是百分比,后面兩個參數(shù)是設(shè)置百分比格式,可以不設(shè)置,默認不保留小數(shù)點。最后圖表顯示的信息為:花生(xx.xx%) ?小麥(xx.xx%)。
圖下面的描述也可以設(shè)置顯示格式,關(guān)鍵代碼為:
//?圖例顯示百分比:自定義方式,?{0}?表示選項,?{1}?表示數(shù)值,?{2}?表示所占比例
piePlot.setLegendLabelGenerator(new?StandardPieSectionLabelGenerator(
"{0}?({2})"));
注意,這是setLegendLableGenerator()??梢远嘣囋噉ew StandardPieSectionLabelGenerator("{0} ({2})")里的參數(shù)設(shè)置。
JFreeChart 可以繪制餅狀圖,折線圖,柱狀圖等. awt/swing里可以使用,JSP里也可以使用
JFreeChart是?Java平臺下開源的圖表類庫,是一個完全基于Java的圖表開發(fā)技術(shù)。
支持的圖表類型也比較豐富,比如餅圖、柱狀圖、散點圖、儀表盤、甘特圖等多種圖表,
還可以生成Web圖形報表。JFreeChart可導(dǎo)出PNG和JPEG格式的文件
例如下面的柱狀圖
java繪制餅圖
%@ page language="java" contentType="image/png;charset=GBK" pageEncoding="GBK"
import="java.awt.*, javax.imageio.*,java.awt.geom.*,java.awt.image.*"%
%!// 繪制餅圖的說明
public void drawTips(String tips, Color color, Arc2D.Double arc2d, Graphics2D g2d) {
Arc2D.Double position = arc2d;
position.setAngleExtent(arc2d.getAngleExtent() / 2);
position.x = arc2d.x - 15;
position.y = arc2d.y - 15;
position.width = arc2d.getWidth() + 50;
position.height = arc2d.getHeight() + 50;
Point2D.Double endPoint = (Point2D.Double) position.getEndPoint();
g2d.setPaint(color);
int stringLength = g2d.getFontMetrics().stringWidth(tips);
if (endPoint.x = arc2d.getCenterX())
g2d.drawString(tips, (float) endPoint.x - stringLength,
(float) endPoint.y);
else {
g2d.drawString(tips, (float) endPoint.x, (float) endPoint.y);
}
}
%
%
// 清空緩沖區(qū)
response.reset();
// 注意這里的MIME類型
response.setContentType("image/png");
// 創(chuàng)建一個 500X375 的圖像
int width = 500, height = 375;
BufferedImage image = new BufferedImage(width, height,
BufferedImage.TYPE_INT_RGB);
// 創(chuàng)建Java2D對象
Graphics2D g2d = image.createGraphics();
// 填充整個背景
g2d.setPaint(Color.WHITE);
g2d.fillRect(0, 0, width, height);
// 繪制陰影,由灰色漸進圓角矩形組成
GradientPaint grayGP = new GradientPaint(0, 0, Color.GRAY, width,
height, new Color(218, 214, 212), false);
g2d.setPaint(grayGP);
RoundRectangle2D.Float bgRR = new RoundRectangle2D.Float(5, 5,
width - 5, height - 5, 50, 50);
g2d.fill(bgRR);
// 繪制漸進藍色圓角矩形背景
GradientPaint blueGP = new GradientPaint(0, 0, new Color(252, 197,
113), width / 2, height / 2, new Color(255, 255, 169), true);
g2d.setPaint(blueGP);
g2d.fillRoundRect(0, 0, width - 5, height - 5, 50, 50);
// 繪制深藍色圓角矩形輪廓
BasicStroke bs = new BasicStroke(1.2f);
g2d.setStroke(bs);
g2d.setPaint(new Color(55, 71, 105));
g2d.drawRoundRect(0, 0, width - 5, height - 5, 50, 50);
// 繪制圖表標(biāo)題
//String chartTitle = "客戶構(gòu)成分析";
g2d.setColor(Color.BLACK);
g2d.setFont(new Font("宋體", Font.PLAIN, 30));
//int stringLength = g2d.getFontMetrics().stringWidth(chartTitle);
//g2d.drawString(chartTitle, (width - stringLength) / 2, 30);
// 定義圓弧
Arc2D.Double arc2d = new Arc2D.Double();
double startAngle = 30.0, arcAngle = 0.0;
double rectWidth = 295.0, rectHeight = 245.0;
Point2D.Double p2d = new Point2D.Double((width - rectWidth) / 2, 70.0);
int arcType = Arc2D.PIE;
Color color[] = new Color[5];
color[0] = new Color(99, 99, 0);
color[1] = new Color(255, 169, 66);
color[2] = new Color(33, 255, 66);
color[3] = new Color(33, 0, 255);
color[4] = new Color(255, 0, 66);
double bookSales[] = new double[5];
double totalSales = 0.0;
// 定義厚度
int thickness = 25;
for (int i = 0; i bookSales.length; i++) {
bookSales[i] = 1 + Math.random() * 99;
totalSales += bookSales[i];
}
// 繪制起始角度不大于90度的圓弧
startAngle = 30;
for (int i = 0; i bookSales.length; i++) {
arcAngle = bookSales[i];
if (startAngle = 90) {
break;
}
for (int j = thickness; j 0; j--) {
g2d.setColor(color[i].darker());
arc2d = new Arc2D.Double(p2d.x, p2d.y + j, rectWidth,
rectHeight, startAngle, arcAngle, arcType);
// 填充圓弧
g2d.fill(arc2d);
}
// 更新圓弧的起始角度
startAngle += arcAngle;
}
// 繪制起始角度不小于270度的圓弧
startAngle = 390;
for (int i = bookSales.length - 1; i 0; i--) {
arcAngle = bookSales[i];
if (startAngle = 270) {
break;
}
for (int j = thickness; j 0; j--) {
g2d.setColor(color[i].darker());
arc2d = new Arc2D.Double(p2d.x, p2d.y + j, rectWidth,
rectHeight, startAngle, -arcAngle, arcType);
// 填充圓弧
g2d.fill(arc2d);
}
// 更新圓弧的起始角度
startAngle -= arcAngle;
}
// 繪制起始角度在90度到270度之間的圓弧
startAngle = 30;
for (int i = 0; i bookSales.length; i++) {
arcAngle = bookSales[i];
if (startAngle 90 startAngle 270) {
for (int j = thickness; j 0; j--) {
g2d.setColor(color[i].darker());
arc2d = new Arc2D.Double(p2d.x, p2d.y + j, rectWidth,
rectHeight, startAngle + arcAngle, -arcAngle,
arcType);
// 填充圓弧
g2d.fill(arc2d);
}
}
// 更新圓弧的起始角度
startAngle += arcAngle;
}
// 繪制最上面一層圓弧
startAngle = 30;
for (int i = 0; i bookSales.length; i++) {
arcAngle = bookSales[i];//item.getPercent() * 3.6;
g2d.setColor(color[i]);
arc2d = new Arc2D.Double(p2d.x, p2d.y, rectWidth, rectHeight,
startAngle, arcAngle, arcType);
// 填充圓弧
g2d.fill(arc2d);
// 描繪圓弧輪廓
g2d.setStroke(new BasicStroke(1.2f));
g2d.setPaint(Color.GRAY);
g2d.draw(arc2d);
// 更新圓弧的起始角度
startAngle += arcAngle;
g2d.setFont(new Font("宋體", Font.PLAIN, 12));
}
// 部署圖形
g2d.dispose();
// 利用ImageIO類的write方法對圖像進行編碼
ServletOutputStream sos = response.getOutputStream();
ImageIO.write(image, "PNG", sos);
sos.close();
out.clear();
out = pageContext.pushBody();
%
java有第三方的jar包可以支持,jfreechar,可以到網(wǎng)上搜索相關(guān)資料,餅狀圖,柱狀圖。。都有。
用的時候挺簡單的。