Ehcarts 饼形展示图

30 min read

option = {
  legend: {
    show: true,
    icon: 'circle',
    left: 0,
    top:"25%",
    orient: 'vertical',
    bottom: '10%',
    itemWidth: 10,
    itemStyle: {
      borderColor: 'none',
    },
    textStyle: {
      rich: {
        name: {
          color: '#606266',
          fontSize: 14,
        },
        percentage: {
          color: '#606266',
          fontSize: 16,
          padding: [0, 0, 0, 30],
          align: 'right',
        },
      },
    },
  },
  tooltip: {
    trigger: 'item',
  },
  series: [
    {
      type: 'pie',
      color: ['#4D88FE', '#50CCCB', '#FFBF3C'],
      radius: '70%',
      left: 'center',
      data:  [
  { value: 1048, name: '水田' },
  { value: 735, name: '水浇地' },
  { value: 580, name: '旱地' },
],
      emphasis: {
        itemStyle: {
          shadowBlur: 10,
          shadowOffsetX: 0,
          shadowColor: 'rgba(0, 0, 0, 0.5)',
        },
      },
      labelLine: {
        show: false,
        length: 10,
        length2: 60,
      },
      label: {
        width:100,
        show:false,
        fontSize:12,
      },
      itemStyle: {
        borderColor: '#fff',
      },
    },
  ],
};


image-20220912223129877