彩票走势图

ChartDirector四步入门法(For JSP)

原创|其它|编辑:郝浩|2012-10-16 15:40:14.000|阅读 730 次

概述:ChartDirector For JSP的使用步骤,方便学习

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

1、先要下载ChartDirector包 把它放在classpath中

2、配置web.xml

<servlet>
 <servlet-name>GetSessionImage</servlet-name>
 <servlet-class>ChartDirector.GetSessionImage</servlet-class>
</servlet>
<servlet-mapping>
 <servlet-name>GetSessionImage</servlet-name>
 <url-pattern>*.chart</url-pattern>
</servlet-mapping>

3、建立两个文件 getchart.jsp和index.jsp

<%@page import="ChartDirector.*" %><%
try 
{ 
 out.clear();
 GetSessionImage.getImage(request, response); 
 if (Math.max(1, 2) == 2) return;
}
catch (IllegalStateException e) 
{ 
 response.sendRedirect(response.encodeRedirectURL(
  "getchart.chart?" + request.getQueryString()));
 return;
}
%>


<%@ page language="java" contentType="text/html; charset=UTF-8"
 pageEncoding="UTF-8" import="ChartDirector.*;"%>
<%
request.setCharacterEncoding("UTF-8");
//以两个系列数据为例
double[] data = {185, 156, 179.5, 211, 123};
double[] data1 = {55, 76, 34.5, 88, 43};
//数据列名
String[] labels = {"一月", "二月", "三月", "四月", "五月"};
//生成图片大小 250 x 250 
XYChart c = new XYChart(550, 350);
Chart.setLicenseCode("ME7YWN3DBFQU2C7MB3971677");

//图标题
c.addTitle("第一个图","",15); 
//支持中文
c.setDefaultFonts("SIMSUN.TTC","simhei.ttf");
//图表在图片中的定位及区域大小
c.setPlotArea(30, 40, 400, 250);
//=========================
//加入单个数据
//BarLayer layer = c.addBarLayer(data,0xff3456,"我的测试");
//=========================
//加入多个BAR数据(多个datasets)
BarLayer layer = c.addBarLayer2(Chart.Side, 3);
layer.addDataSet(data, 0xff8080, "我测试1");
layer.addDataSet(data1, 0x008080, "你也测2");
//3d化
layer.set3D();
//设置BAR边框形式
layer.setBarShape(0);
//bar宽度
layer.setBarWidth(50);
//设置BAR边框颜色
//layer.setBorderColor(0xff9999);
//图例形式
layer.setLegend(1);
//每个BAR顶部加入数据显示
layer.setAggregateLabelStyle();
//设置BAR底部的名称显示
TextBox t = c.xAxis().setLabels(labels);
//名称文字大小
t.setFontSize(9);
//加图例
//LegendBox legend = c.addLegend(260, 120,true);
//legend.addKey("钱财",0xff8080);
//图例位置
c.addLegend(450, 120,true);

//output the chart
String chart1URL = c.makeSession(request, "chart1");
//include tool tip for the chart
String imageMap1 = c.getHTMLImageMap("#", "", "title='{xLabel}: US${value}K'");
%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>图表测试</title>
</head>
<body>
<h1>中文</h1>
<hr color="#000080">
<br>
<img src='<%=response.encodeURL("getchart.jsp?"+chart1URL)%>'
    usemap="#map1" border="0">
<map name="map1"><%=imageMap1%></map>

<%
out.println(chart1URL);
out.println(response.encodeURL(chart1URL));
%>
</body>
</html>

4、布置运行

以上就是ChartDirector的使用过程,由于效果图上传不了,大家自己运行试试


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:搜狐博客

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP