一、如何安装和引入
安装
1
| npm install echarts --save
|
其他安装方式:官网参考
全局引入
1 2
| import echarts from 'echarts';
|
按需引入
1 2 3 4 5 6 7 8 9 10 11 12
| import echarts from 'echarts/lib/echarts';
import 'echarts/lib/chart/bar';
import 'echarts/lib/component/grid';
import 'echarts/lib/component/title';
import 'echarts/lib/component/tooltip';
import 'echarts/lib/component/legend';
|
推荐使用按需引入,以减少包体积大小
二、如何初始化
在 template 中添加一个 div 标签,并设置其宽高,作为 echarts 初始化的 DOM 容器
1 2 3
| <template> <div ref="chart" style="width: 500px; height: 500px;"></div> </template>
|
注意:未设置 DOM 容器宽高时,echarts 将不会渲染
在 mounted 钩子中初始化 echarts 实例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| export default { data() { return { chartInstance: '', }; }, mounted() { const options = {}; this.chartInstance = echarts.init(this.$refs.chart); this.chartInstance.setOptions(options); }, };
|
三、如何响应数据变化进行重绘
将 options 作为计算属性,根据传入的 props 进行计算,当依赖的 props 变化时,options 同时进行变化,然后监听 options 变化进行重绘。一个简单的条形图示例如下:
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 43 44 45 46 47 48
| export default { props: { list: { type: Array, default: () => [], }, }, data() { return { chartInstance: '', }; }, computed: { options() { const xAxisData = this.list.map((item) => item.category); const barData = this.list.map((item) => item.value); return { xAxis: { type: 'category', data: xAxisData, }, yAxis: { type: 'value', }, series: [ { data: barData, type: 'bar', }, ], }; }, }, watch: { options(newValue) { this.chartInstance && this.chartInstance.setOption(newValue); }, }, mounted() { this.chartInstance = echarts.init(this.$refs.chart); this.chartInstance.setOption(this.options); }, };
|
四、如何自适应容器大小
1、获取外部容器(组件父元素)的大小
2、设置图表的容器的大小为获取的组件父元素大小
修改 mounted 钩子中 echarts 初始化代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13
| export default { mounted() { const parentNode = this.$el.parentNode; const parentNodeStyle = window.getComputedStyle(parentNode); this.$refs.chart.style.width = parentNodeStyle.width; this.$refs.chart.style.height = parentNodeStyle.height; this.chartInstance = echarts.init(this.$refs.chart); this.chartInstance.setOption(this.options); }, };
|
echarts 通过 tooltip 的 formatter 属性,支持用户对 tooltip 进行自定义,formatter 属性有两个类型,一个是字符串模板,