日期:2014-05-16 浏览次数:20436 次
<div id="indexDiv" align="center"> Chart.</div>
<script type="text/javascript">
//Instantiate the Chart
var chart_index = new FusionCharts("./FusionCharts/Line.swf", "index", "100%", "550", "0", "0");
chart_index.setTransparent("false");
//Provide entire XML data using dataXML method
chart_index.setDataXML("<graph bgcolor='e1f5ff' caption='河北盈洪广告有限公司' subCaption='2014年每月销售量' numberPrefix='' formatNumberScale='1' decimalPrecision='3' baseFontSize='14' numberSuffix='万'><set name='一月份' value='3.4' color='AFD8F8' /><set name='二月份' value='4.5' color='F6BD0F' /><set name='三月份' value='5.5' color='8BBA00' /><set name='四月份' value='2.3' color='FF8E46' /><set name='五月份' value='1.1' color='008E8E' /><set name='六月份' value='4.3' color='D64646' /></graph><graph bgcolor='e1f5ff' caption='河北盈洪广告有限公司' subCaption='2014年每月销售量' numberPrefix='' formatNumberScale='0' decimalPrecision='3' baseFontSize='14' numberSuffix='万'><set name='一月份' value='2.4' color='AFD8F8' /><set name='二月份' value='2.5' color='F6BD0F' /><set name='三月份' value='4.5' color='8BBA00' /><set name='四月份' value='4.3' color='FF8E46' /><set name='五月份' value='3.1' color='008E8E' /><set name='六月份' value='2.3' color='D64646' /></graph>")
//Finally, render the chart.
chart_index.render("indexDiv");
</script>