echart-bar.vue 1.86 KB
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
<script setup>
const state=reactive({
  chartData:{
    legend:['本地视频会议', '异地视频会议'],
    xAxis:['十二月', '一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月'],
    colors:[$c.bll4,$c.aql4,$c.ipl3,$c.cbl3,],
    data:[
      [235, 210, 187, 212, 278, 220, 320, 302],
      [68, 121, 34, 56, 23, 120, 132, 101, 134]
    ],
  },
  chartOption:{}
})

const processData=()=>{
  let legend=state.chartData.legend,
      colors=state.chartData.colors,
      xAxis=state.chartData.xAxis,
      data=state.chartData.data,
      processedData=[]
  legend.forEach((item,i)=>{
    processedData.push({
      name: legend[i],
      type: 'bar',
      // barWidth:10,
      label: {
        show: false,
        position: 'insideRight'
      },
      itemStyle:{
        color: colors[i],
        borderRadius: 5
      },
      data: data[i]
    })
  })
  state.chartOption.series=processedData;
  state.chartOption.xAxis.data=xAxis;
}

const processOption=()=>{
  state.chartOption={
    update:false,
    // title:{ text:"barA", left:200, top:0, textStyle:{ color:$c.gyl3, fontSize:16, fontWeight:"normal" }, },
    tooltip: {
      trigger: 'axis',
      axisPointer: {
        type: 'shadow'
      }
    },
    legend: {
      //show:false,
      data: [],
      top:"5",
      right:60,
    },
    // toolbox: { feature: { magicType: { type: ['line', 'bar'] } }, },
    grid: {
      left: '5%',
      right: '5%',
      bottom: '5%',
      top: "20%",
      containLabel: true
    },
    yAxis: {
      type: 'value',
      axisLabel: {align: 'right' }
    },
    xAxis: {
      type: 'category',
      data: [],
      axisLabel: { align: 'center' }
    },
    series: []
  }
  processData()
}

onMounted(() => {
  processOption();
})
</script>
<template>
  <echartsInit :chartOption="state.chartOption"></echartsInit>
</template>
<style lang="less">
</style>