美文网首页
在Vue中使用echarts

在Vue中使用echarts

作者: 追逐繁星的阿忠 | 来源:发表于2021-04-16 16:38 被阅读0次

基本参照:https://www.jianshu.com/p/cf0a54374419

//引入需要

import * as echarts from 'echarts'

Vue.prototype.$echarts = echarts

//使用需要声明变量

drawLine() {
        var echarts = require('echarts'); // eslint-disable-line no-unused-vars
        // 基于准备好的dom,初始化echarts实例
        const myChart = this.$echarts.init(document.getElementById('myChart'))
        // 绘制图表
        myChart.setOption({
          title: { text: '在Vue中使用echarts' },
          tooltip: {},
          xAxis: {
            data: ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
          },
          yAxis: {},
          series: [{
            name: '销量',
            type: 'bar',
            data: [5, 20, 36, 10, 10, 20]
          }]
        });
      },

展示效果

image.png

相关文章

网友评论

      本文标题:在Vue中使用echarts

      本文链接:https://www.haomeiwen.com/subject/jcbelltx.html