日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Amcharts插件实现3D饼图

發布時間:2024/1/17 编程问答 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Amcharts插件实现3D饼图 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

2019獨角獸企業重金招聘Python工程師標準>>>

主要引入兩個js文件:

pie.js和amcharts.js

實現的效果如下:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>amCharts examples</title><link rel="stylesheet" href="style.css" type="text/css"><script src="amcharts/amcharts.js" type="text/javascript"></script><script src="amcharts/pie.js" type="text/javascript"></script><script type="text/javascript">var chart;var chartData = [{"country": "大寶","visits": 6000},{"country": "二寶","visits": 1882},{"country": "三寶","visits": 1809},{"country": "四寶","visits": 1322},{"country": "五寶","visits": 1122},{"country": "六寶","visits": 1114},{"country": "七寶","visits": 984},{"country": "八寶","visits": 711}];AmCharts.ready(function () {// PIE CHARTchart = new AmCharts.AmPieChart();// title of the chartchart.addTitle("寶寶們隨著年齡增長的小秘密", 16);chart.dataProvider = chartData;chart.titleField = "country"; //分類類別項chart.valueField = "visits"; //比例值chart.sequencedAnimation = true;chart.startEffect = "elastic";chart.innerRadius = "30%";chart.startDuration =2; //餅圖的渲染時間,時間越長,動畫越長,展示的準備時間越久chart.labelRadius = 10; //餅圖上標簽,值越大,餅圖越小,說明的標簽指示線越長chart.balloonText = "[[title]]<br><span style='font-size:14px'><b>[[value]]</b> ([[percents]]%)</span>";// the following two lines makes the chart 3Dchart.depth3D = 10; //3D效果的立體度 ,值越大立體感越強chart.angle = 20; //角度占的分額基數,值大則顯示的餅圖倍數就會擴大,但是值不能超過限定的最大值,否則會變小// WRITE chart.write("chartdiv");});</script></head><body><div id="chartdiv" style="width:600px; height:400px;"></div></body></html>

?

轉載于:https://my.oschina.net/u/3544533/blog/1609222

總結

以上是生活随笔為你收集整理的Amcharts插件实现3D饼图的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。