amcharts 图型插件示例,直接复制代码就可查看

来源:互联网 发布:网络彩票概念龙头股 编辑:程序博客网 时间:2024/06/05 03:36
<!-- Styles --><style>#chartdiv {  width: 100%;  height: 500px;}</style><!-- Resources --><script src="https://www.amcharts.com/lib/3/amcharts.js"></script><script src="https://www.amcharts.com/lib/3/pie.js"></script><script src="https://www.amcharts.com/lib/3/plugins/export/export.min.js"></script><link rel="stylesheet" href="https://www.amcharts.com/lib/3/plugins/export/export.css" type="text/css" media="all" /><script src="https://www.amcharts.com/lib/3/themes/light.js"></script><!-- Chart code --><script>var chart = AmCharts.makeChart( "chartdiv", {  "type": "pie",  "theme": "light",  "dataProvider": [ {    "country": "Lithuania",    "value": 26  }, {    "country": "Ireland",    "value": 20  }, {    "country": "Germany",    "value": 65  }, {    "country": "Australia",    "value": 39  }, {    "country": "UK",    "value": 19  }, {    "country": "Latvia",    "value": 10  } ],  "valueField": "value",  "titleField": "country",  "outlineAlpha": 0.4,  "depth3D": 15,  "balloonText": "[[title]]<br><span style='font-size:14px'><b>[[value]]</b> ([[percents]]%)</span>",  "angle": 30,  "export": {    "enabled": true  }} );</script><!-- HTML --><div id="chartdiv"></div>

0 0
原创粉丝点击