echarts繪製餅圖

張大晴發表於2018-05-04
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="./js/echarts.min.js"></script>
    <style>
        #main{
            width:400px;
            height:400px;
            float: left;
        }
    </style>
</head>
<body>
    <div id="main">

    </div>
    <script>
        var myChart = echarts.init(document.getElementById('main'));
        var option = {
            tooltip : {
                trigger: 'item',
                formatter: "{a} <br/>{b} : {c} ({d}%)"
            },
            series : [
                {
                    name: 'aa',
                    type: 'pie',
                    radius : '50%',
                    center: ['50%', '60%'],
                    data:[
                        {value:335, name:'直接訪問'},
                        {value:310, name:'郵件營銷'},
                        {value:234, name:'聯盟廣告'},
                        {value:135, name:'視訊廣告'},
                        {value:1548, name:'搜尋引擎'}
                    ],
                    color: ['blue','black','red','yellow','orange'],
                    itemStyle: {
                        normal:{
                            label:{
                                show:true,
                                formatter: '{b} : {c} \n ({d}%)',
                                textStyle:{
                                    fontWeight:'bold',
                                    fontSize: 10,
                                    color:'black'
                                }
                            },
                            labelLine:{
                                show:true
                            }
                        }
                    },
                    animation:false
                }
            ]
        };
        myChart.setOption(option);
    </script>
</body>

</html>

label屬性設定文字樣式
animation:false 是否讓餅圖有動態的效果
tooltip:滑鼠移動到餅圖上展示的內容



相關文章