FusionChartsFree的简单用法
今天发现个不错的显示图表的东西----FusionChartsFree,有免费版的,有收费版的,免费版的我用着就不错。收费的可能更好一点儿。
看了看官方提供的例子,我是在JSP中使用,想到一个简单的用法,贴在下面:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>结果显示</title><script type="text/javascript" src="FusionCharts.js"></script></head><body style="display:none;"><graph caption='结果柱状图' xAxisName='企业名称' yAxisName='得分' decimalPrecision='0' formatNumberScale='0' chartRightMargin='30'><set name="企业1" value="75" color="0000ff"/><set name="企业2" value="55" color="0000ff"/><set name="企业3" value="65" color="0000ff"/><set name="企业4" value="35" color="0000ff"/><set name="企业5" value="95" color="0000ff"/></graph></xmp><div id="chartdiv" style="text-align:center;">FusionCharts. </div><script type="text/javascript">var chart = new FusionCharts("FCF_Column3D.swf", "ChartId", "600", "360");chart.setDataXML(document.getElementById('chartData').innerText); chart.render("chartdiv");</script></center></body></html>