首页 > 其他 > 详细

Vue中echarts的使用

时间:2019-11-25 22:09:44      阅读:290      评论:0      收藏:0      [点我收藏+]

1.安装

npm install echarts --save

2. 导入并挂载

技术分享图片

 

 

<template>
  <!-- 1. 为ECharts准备一个具备大小(宽高)的Dom -->
  <div id="main" style="width: 600px;height:400px;"></div>
</template>
<script>
export default {
  data() {
    return {}
  },
  methods: {},
  async mounted() {
    // 2.基于准备好的dom,初始化echarts实例
    let myChart = this.$echarts.init(document.getElementById(‘main‘))
    // 发送ajax请求获取数据
    const { data: res } = await this.$http.get(‘reports/type/1‘)
    // 3.指定图表的配置项和数据
    let option = res.data
    // 4.使用刚指定的配置项和数据显示图表。
    myChart.setOption(option)
  }
}
</script>

<style lang="less" scoped></style>
 
 
如果获取到的数据不满足要求则需要进行数据合并
数据合并需要用到loadash
1.先安装
npm i --save loadash
2.导入loadash和需要合并的数据
技术分享图片

 

 技术分享图片

 

 

<template>
  <!-- 1. 为ECharts准备一个具备大小(宽高)的Dom -->
  <div id="main" style="width: 600px;height:400px;"></div>
</template>
<script>
import _ from ‘lodash‘
export default {
  data() {
    return {
      options: {
        title: {
          text: ‘用户来源‘
        },
        tooltip: {
          trigger: ‘axis‘,
          axisPointer: {
            type: ‘cross‘,
            label: {
              backgroundColor: ‘#E9EEF3‘
            }
          }
        },
        grid: {
          left: ‘3%‘,
          right: ‘4%‘,
          bottom: ‘3%‘,
          containLabel: true
        },
        xAxis: [
          {
            boundaryGap: false
          }
        ],
        yAxis: [
          {
            type: ‘value‘
          }
        ]
      }
    }
  },
  methods: {},
  async mounted() {
    // 2.基于准备好的dom,初始化echarts实例
    let myChart = this.$echarts.init(document.getElementById(‘main‘))
    // 发送ajax请求获取数据
    const { data: res } = await this.$http.get(‘reports/type/1‘)
    // 3.指定图表的配置项和数据
    const result = _.merge(res.data, this.options)
    // 4.使用刚指定的配置项和数据显示图表。
    myChart.setOption(result)
  }
}
</script>

<style lang="less" scoped></style>

Vue中echarts的使用

原文:https://www.cnblogs.com/wangdong9395/p/11930581.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!