Vue中使用echarts

时间:2024-12-19 20:22:07

使用步骤

  1. 在项目下使用命令行,初始化工程的 npm 环境并安装 echarts(这里前提是您已经安装了 npm):
npm init
npm install echarts --save
  • 1
  • 2
'
运行

2.导入模块到(如果你只有一个组件echarts,那么就导入局部)

全局

:

import Vue from 'vue'
import echarts from 'echarts'
//需要挂载到Vue原型上
Vue.prototype.$echarts = echarts
  • 1
  • 2
  • 3
  • 4
'
运行

之后的组件内部使用:

<template>
  <div style="width: auto;height: 400px" id="main">
  </div>
</template>

<script>
//通过this.$echarts来使用
  export default {
    name: "page",
    mounted(){
    	// 在通过mounted调用即可
		this.echartsInit()
	},
    methods: {
	    //初始化echarts
	    echartsInit() {
	    	//柱形图
	    	//因为初始化echarts 的时候,需要指定的容器 id='main'
			this.$echarts.init(document.getElementById('main')).setOption({
			    xAxis: {
			        type: 'category',
			        data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
			    },
			    yAxis: {
			        type: 'value'
			    },
			    series: [{
			        data: [120, 200, 150, 80, 70, 110, 130],
			        type: 'bar',
			        showBackground: true,
			        backgroundStyle: {
			            color: 'rgba(220, 220, 220, 0.8)'
			        }
			    }]
			})
		}
	    	
    }
  }
</script>
  • 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

之后运行即可

局部

局部使用:

<template>
  <div style="width: auto;height: 400px" id="main">
  </div>
</template>

<script>
  import echarts from 'echarts'
  export default {
    name: "echarts",
    data() {
      return {}
    },
    mounted() {
      this.echartsInit()
    },
    methods:{
      echartsInit() {
        echarts.init(document.getElementById('main')).setOption({
          xAxis: {
            type: 'category',
            data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
          },
          yAxis: {
            type: 'value'
          },
          series: [{
            data: [120, 200, 150, 80, 70, 110, 130],
            type: 'bar',
            showBackground: true,
            backgroundStyle: {
              color: 'rgba(220, 220, 220, 0.8)'
            }
          }]
        })
      }
    }
  }
</script>

<style scoped>

</style>
  • 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

echarts官网教程:
/zh/#%E5%9C%A8%20webpack%20%E4%B8%AD%E4%BD%BF%E7%94%A8%20ECharts
echarts官网还有更多的实例:
/examples/zh/#chart-type-bar

1.进入官网
2.找到你想要的效果
3.点击进入
在这里插入图片描述
4.复制代码粘贴