Echarts图常用字段

weiyanei / 2023-08-04 / 原文

后期持续更新。。。。。。

不然每次都要去文档里面找半天,记录一些常用的,节省下时间。

饼图

标签展示在内部

series: [
    {
      label:{
          show:true,
          position:'inner',
          formatter:'{d}%' //标签展示在内部
      },
    }
  ]

 

 

 

 

 

柱图

  标题设置

title: {
    text: 'TOP5 供应商',
    left:'center',
    textStyle:{
      color:'#808080',
    }
  },

 

图例位置

legend: {
    top:'bottom',
  },

 

分割线

xAxis: {
    type: 'value',
    axisLine:{
      show:false,
    },
    splitLine:{show: false}, //去除分割线
  },

柱图的柱子颜色和宽度

series: [
    {
      barWidth:'20px',
      color:'#f2a673',
      name: '维修设备次数',
      type: 'bar',
      data: [100, 100, 100, 100, 100, 100]
    },
  ]