首页 前端知识 Vue中Echarts使用---条形图

Vue中Echarts使用---条形图

2024-09-01 23:09:24 前端知识 前端哥 631 381 我要收藏

在这里插入图片描述

HTML代码

  <div id="chartStrip" style="width: 100%;height:250px;"></div>

JS代码

data() {
    return {
      stripMonth:[]
    }
  },
created() {
    this.getstrip()
  },
  mounted() {
    this.getstrip()
  },
  methods: {
	getchartStrip(){
      this.chartStrip = this.$echarts.init(document.getElementById("chartStrip"));
      this.chartStrip.setOption({
        // 鼠标经过展示
        tooltip: {
          trigger: 'axis',
          axisPointer: {
            type: 'shadow'
          }
        },
        color: ['#eb5b55'],
        xAxis: {
          type: 'value'
        },
        // 位置
        grid: {
          left: '3%',
          right: '4%',
          bottom: '3%',
          top: '3%',
          containLabel: true
        },
        // y轴数据
        yAxis: {
          type: 'category',
          data: ['一年级', '二年级', '三年级', '四年级', '五年级', '六年级']
          // data:this.getYData
        },
        series: [
          {
            type: 'bar',
            stack: '总量',
            label: {
              // show: true,
              position: 'inside'
            },
            // 数据
            data: ['20', '10', '15', '18', '5', '22']
            // data: this.getXData
          },
        ]
      });
    },
    getstrip(){
      gradeMonth().then(response=>{
        console.log('response====>',response)
        this.stripMonth = response.data.data
        var getXData = [];
        var getYData = [];
        //先进行赋值
        this.stripMonth.trendList.borrowCount = getXData
        this.stripMonth.trendList.gradeName = getYData
        console.log('this.stripMonth.trendList.borrowCount===>',this.stripMonth.trendList.borrowCount)
      })
    },
    // 初始化echarts
    drawCharts() {
      this.drawPieChart();
      this.getchartStrip()
    },
  }
转载请注明出处或者链接地址:https://www.qianduange.cn//article/17431.html
标签
评论
发布的文章

Spring MVC-JSON

2024-06-02 09:06:53

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!