您好,登錄后才能下訂單哦!
這篇文章主要講解了“怎么用jQuery插件FusionCharts實(shí)現(xiàn)2D餅狀圖效果”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“怎么用jQuery插件FusionCharts實(shí)現(xiàn)2D餅狀圖效果”吧!
1、實(shí)現(xiàn)源碼:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>FusionCharts2D餅圖</title> <script src="js/jquery-1.4.2.min.js"></script> <script type="text/javascript" src="js/fusioncharts.js" ></script> <style> body,html{ width: 99%; height: 98%; font-family: "微軟雅黑"; font-size: 12px; } </style> <script> $(document).ready(function(){ FusionCharts.ready(function () { var ageGroupChart = new FusionCharts({ type: 'pie2d', renderAt: 'pie2D', width: '1350', height: '650', dataFormat: 'json', dataSource: { "chart": { "caption": "億速云統(tǒng)計(jì)2016年每個(gè)季度的收入比例", "subCaption": "", "paletteColors": "#0075c2,#1aaf5d,#f2c500,#f45b00,#8e0000", "bgColor": "#ffffff", "showBorder": "0", "use3DLighting": "0", "showShadow": "0", "enableSmartLabels": "0", "startingAngle": "0", "showPercentValues": "1", "showPercentInTooltip": "0", "decimals": "2", "captionFontSize": "14", "subcaptionFontSize": "14", "subcaptionFontBold": "0", "toolTipColor": "#ffffff", "toolTipBorderThickness": "0", "toolTipBgColor": "#000000", "toolTipBgAlpha": "80", "toolTipBorderRadius": "2", "toolTipPadding": "5", "showHoverEffect":"1", "showLegend": "1", "legendBgColor": "#ffffff", "legendBorderAlpha": '0', "legendShadow": '0', "legendItemFontSize": '10', "legendItemFontColor": '#666666' }, "data": [ { "label": "億速云第一季度", "value": "255040" }, { "label": "億速云第二季度", "value": "689545" }, { "label": "億速云第三季度", "value": "784595" }, { "label": "億速云第四季度", "value": "325848" } ] } }).render(); }); }); </script> </head> <body> <div id="pie2D"></div> </body> </html>
2、實(shí)現(xiàn)效果圖:
感謝各位的閱讀,以上就是“怎么用jQuery插件FusionCharts實(shí)現(xiàn)2D餅狀圖效果”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)怎么用jQuery插件FusionCharts實(shí)現(xiàn)2D餅狀圖效果這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。