饼图案例2

效果图:
饼图案例2_第1张图片

option = {
  title: {
    text: '本周计划进度',
    left: 'center',
    bottom: '0'
  },
  tooltip: {
    trigger: 'item',
  },
  legend: {
    left: 'center',
    data: ['已完成', '未完成']
  },
  series: [
    {
      name: '本周计划进度',
      type: 'pie',
      radius: '65%',
      center: ['50%', '50%'],
      label: {
        formatter: '{c}',
        fontWeight: 'bold',
        fontSize: 20
      },
      data: [
        { 
          value: 735,
          name: '已完成',
          itemStyle: {
            color: '#91cd77'
          }
        },
        { 
          value: 500,
          name: '未完成',
          itemStyle: {
            color: '#57baf5'
          }
        },
      ],
    }
  ]
};

你可能感兴趣的:(前端,echarts,javascript,echarts)