Newer
Older
smartwell_front / src / views / zhangqiu / js / data.js
liuyangyingjie on 16 Aug 2022 709 bytes feat(view): 新增章丘驾驶舱看板

const option2 = {
  color : ["#F79709","#AAEEEE","#1A94E6"],
  title: {
    // text: '畅销饮料占比饼状图',
    // style: {
    //   fill: '#FFF',
    //   fontSize: 14,
    //   fontWeight: 'bold',
    //   textAlign: 'center',
    //   textBaseline: 'bottom',
    // }
    show:false
  },
  series: [
    {
      type: 'pie',
      data: [
        { name: '中燃燃气', value: 2000 },
        { name: '圣井燃气', value: 2400 },
        { name: '正和燃气', value: 3200 },
      ],
      radius : 60,
      insideLabel: { //内部标签
        show: true,
      },
      outsideLabel:{
        labelLineBendGap:10,
        labelLineEndLength:12,
      }

    }
  ]
}


  export  {option2}