ECharts 是百度贡献的一个使用 JavaScript 实现的开源可视化库,涵盖各行业图表,满足各种需求,应用非常广泛,具体安装命令如下:
# 安装依赖
npm install echarts -S
# OR
npm install echarts --save
和其他插件的安装一样,需要在main.js中引入echarts,具体代码如下:
// main.js
import Vue from 'vue'
import App from './App.vue'
import echarts from 'echarts'
Vue.prototype.$echarts = echarts
Vue.config.productionTip = false
new Vue({
render: h => h(App),
}).$mount('#app')
使用echarts和在普通页面没有太大区别,具体代码如下:
<template>
<div id="myChart" :style="{width: '300px', height: '300px'}"></div>
</template>
<script>
export default {
name: 'hello',
data () {
return {
msg: 'Welcome to Your Vue.js App'
}
},
mounted(){
this.drawLine();
},
methods: {
drawLine(){
// 基于准备好的dom,初始化echarts实例
let myChart = this.$echarts.init(document.getElementById('myChart'))
// 准备数据
let option = {
title: { text: '在Vue中使用echarts' },
tooltip: {},
xAxis: {
data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
},
yAxis: {},
series: [{
name: '销量',
type: 'line',
data: [5, 20, 36, 10, 10, 20]
}]
};
// 绘制图表
myChart.setOption(option);
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
</style>