亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

jQuery插件FusionCharts繪制2D環(huán)餅圖效果示例【附demo源碼】

 更新時間:2017年04月10日 14:17:33   作者:翱翔天地  
這篇文章主要介紹了jQuery插件FusionCharts繪制2D環(huán)餅圖效果,結合實例形式分析了jQuery使用插件FusionCharts載入xml數(shù)據(jù)繪制2D環(huán)餅圖的相關步驟與操作技巧,并附帶demo源碼供讀者下載參考,需要的朋友可以參考下

本文實例講述了jQuery插件FusionCharts繪制2D環(huán)餅圖效果。分享給大家供大家參考,具體如下:

1、靜態(tài)頁面index.html:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>FusionCharts Doughnut2D</title>
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="FusionCharts/FusionCharts.js"></script>
<script type="text/javascript">
$(function(){
 var doughnut2D = new FusionCharts( "FusionCharts/Doughnut2D.swf", "doughnut2DId", "100%", "540", "0" ); 
 doughnut2D.setXMLUrl("doughnut2D.xml"); 
 doughnut2D.render("doughnut2DChart"); 
});
</script>
</head>
<body>
  <div id="doughnut2DChart"></div>
</body>
</html>

2、XML數(shù)據(jù)源 doughnut2D.xml:

<?xml version="1.0" encoding="UTF-8"?>
<chart caption='(jb51.net統(tǒng)計)一周收入' showPercentageValues='1' baseFont='微軟雅黑' baseFontSize='16'
    baseFontColor='#00FF00' showLegend='1' legendPosition='BOTTOM' legendIconScale='0'
    legendBorderColor='#0000FF' legendShadow='1' legendAllowDrag='1'>
  <set label='星期一' value='895645' />
  <set label='星期二' value='154511' />
  <set label='星期三' value='562111' />
  <set label='星期四' value='451211' />
  <set label='星期五' value='356124' />
  <set label='星期六' value='754544' />
  <set label='星期日' value='454212' />
</chart>

3、運行結果

附:完整實例代碼點擊此處本站下載。

注:該源碼需要放到服務器環(huán)境下運行!否則無法加載xml文件數(shù)據(jù)。

更多關于jQuery相關內容感興趣的讀者可查看本站專題:《jQuery常用插件及用法總結》、《jquery中Ajax用法總結》、《jQuery表格(table)操作技巧匯總》、《jQuery擴展技巧總結》、《jQuery常見經典特效匯總》及《jquery選擇器用法總結

希望本文所述對大家jQuery程序設計有所幫助。

相關文章

最新評論