如何用ChartDirector绘制滚动图表

 我来答
EvenHHZ
2016-10-19 · 知道合伙人软件行家
EvenHHZ
知道合伙人软件行家
采纳数:13691 获赞数:18845
个人出版图书:《玩转Python网络爬虫》、《玩转Django2.0》

向TA提问 私信TA
展开全部
使用下面两段代码创建图表:
代码一
<%@pageimport="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"};
// Create a XYChart object of size 250 x 250 pixels
XYChart c =newXYChart(250,250);
// Set the plotarea at (30, 20) and of size 200 x 200 pixels
c.setPlotArea(30,20,200,200);
// Add a bar chart layer using the given data
c.addBarLayer(data);
// Set the labels on the x axis.
c.xAxis().setLabels(labels);
// Output the chart
String chart1URL = c.makeSession(request,"chart1");
// Include tool tip for the chart
String imageMap1 = c.getHTMLImageMap("","","title='{xLabel}: US${value}K'");
%>
<html>
<body style="margin:5px 0px 0px 5px">
<div style="font-size:18pt; font-family:verdana; font-weight:bold">
Simple Bar Chart
</div>
<hr color="#000080">
<div style="font-size:9pt; font-family:verdana; margin-bottom:1.5em">
<a href="viewsource.jsp?file=<%=request.getServletPath()%>">View Source Code</a>
</div>
<img src='<%=response.encodeURL("getchart.jsp?"+chart1URL)%>'
usemap="#map1"border="0">
<map name="map1"><%=imageMap1%></map>
</body>
</html>

代码二:getchart.jsp
<%@pageimport="ChartDirector.*"%><%
try
{

out.clear();
GetSessionImage.getImage(request, response);
response.setHeader("Content-Type","image/png");
if(Math.max(1,2) ==2)return;
}
catch(IllegalStateException e)
{
response.sendRedirect(response.encodeRedirectURL(
"getchart.chart?"+ request.getQueryString()));
return;
}
%>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式