vue整合echarts

1、需要在项目的路径下安装echarts

cnpm install echarts -s

注意:下载5.0版本会出现“export ‘default‘ (imported as ‘echarts‘) was not found in ‘echarts‘,后来换成4.9版本

npm install echarts@4.9.0

2、在vue的main.js全局布局下导入

import echarts from 'echarts'
Vue.prototype.$echarts = echarts

3、在编码的script中引入

let myChart = echarts.init(document.getElementById('chart_example'));

4、demo例子

<template>

  <div>
    <h2>信息统计柱形图</h2>
    <div id="chart_example" class="chart_example" ></div>   
  </div>
</template>
 
<script >
  import echarts from 'echarts'
  
  export default {
    data() {
      return {}
    },
    mounted() {
      let this_ = this;
      let myChart = echarts.init(document.getElementById('chart_example'));
      let option = {
        color: ['#72ccff'],
        tooltip : {
          trigger: 'axis',
          axisPointer : {
            type : 'shadow'
          }
        },
        xAxis : [
          {
            type : 'category',
            data : ['周日','周一','周二','周三','周四','周五','周六',],
            axisTick: {
              alignWithLabel: true
            }
          }
        ],
        yAxis : [
          {
            type : 'value'
          }
        ],
        series : [
          {
            name:'每月花费',
            type:'bar',
            barWidth: '60%',
            data:[995,666,444,858,654,236,645]
          }
        ]
      };
      myChart.setOption(option);
 
      //建议加上以下这一行代码,不加的效果图如下(当浏览器窗口缩小的时候)。超过了div的界限(红色边框)
      window.addEventListener('resize',function() {myChart.resize()});
    },
    methods: {},
    watch: {},
    created() {
 
    }
  }
</script>

<style scoped>
  h2{
    text-align: center;
    padding: 30px;
    font-size: 18px;
  }
  #chart_example{
    width: 50%;
    height: 500px;
    border: 1px solid #72ccff;
    margin: 0 auto;
  }

</style>
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值