饼图官网手册

var set_option = function(series_data,title_text){
return {
    title: {
            text: title_text, //饼图标题
            subtext: '',    //饼图副标题
            left: 'center'  //标题位置
        },
 tooltip: {
            trigger: 'item',
            formatter: "{b}: {c} ({d}%)"
        },
 legend: {
             x: 'left',  //图释在图的位置  上下左右
             type: 'scroll',  //可滚动图例,展示地区图例时好用
             orient: 'vertical',
             right: 0,
             top: 20,
             bottom: 10,
             data:series_data  //如果不使用type: 'scroll'可以不写
         },
 series: [
            {
                name:'',
                type:'pie',
                //color: ['#73c0de', '#5470c6', '#91cc75'],//可设置颜色
                // radius: ['0%', '80%'], //饼图形状 ['内圆半径','外圆半径'],['30%', '80%']就是环形图
                data:series_data
            }
        ]
    };
 }
 
 var myChart = echarts.init(document.getElementById('state'), 'light');
 var series_data = [
        {value:1, name:'男'},
        {value:1, name:'女'},
    ];
var title = '性别统计';
myChart.setOption(set_option(series_data, title));

你要继续加油哦
433 声望3 粉丝