vue项目中如何封装echarts
图表,下面编程教程网小编给大家详细介绍一下封装方法!
具体代码如下:
<template>
<div class="chart">
<div ref="chart" :style="{ height: height, width: width }" />
</div>
</template>
<script>
// 引入 echarts 核心模块,核心模块提供了 echarts 使用必须要的接口。
import * as echarts from 'echarts/core'
// 引入柱状图图表,图表后缀都为 Chart
import {
BarChart
} from 'echarts/charts'
// 引入提示框,标题,直角坐标系组件,组件后缀都为 Component
import {
TitleComponent,
TooltipComponent,
GridComponent
} from 'echarts/components'
// 引入 Canvas 渲染器,注意引入 CanvasRenderer 或者 SVGRenderer 是必须的一步
import {
CanvasRenderer
} from 'echarts/renderers'
// 注册必须的组件
echarts.use(
[TitleComponent, TooltipComponent, GridComponent, BarChart, CanvasRenderer]
)
export default {
name: 'ChartView',
props: {
width: {
type: String,
default: '100%'
},
height: {
type: String,
default: '350px'
},
autoResize: {
type: Boolean,
default: true
},
chartOption: {
type: Object,
required: true
},
type: {
type: String,
default: 'canvas'
}
},
data() {
return {
chart: null
}
},
watch: {
chartOption: {
deep: true,
handler(newVal) {
this.setOptions(newVal)
}
}
},
mounted() {
this.initChart()
if (this.autoResize) {
window.addEventListener('resize', this.resizeHandler)
}
},
beforeDestroy() {
if (!this.chart) {
return
}
if (this.autoResize) {
window.removeEventListener('resize', this.resizeHandler)
}
this.chart.dispose()
this.chart = null
},
methods: {
resizeHandler() {
this.chart.resize()
},
initChart() {
this.chart = echarts.init(this.$refs.chart, '', {
renderer: this.type
})
this.chart.setOption(this.chartOption)
this.chart.on('click', this.handleClick)
},
handleClick(params) {
this.$emit('click', params)
},
setOptions(option) {
this.clearChart()
this.resizeHandler()
if (this.chart) {
this.chart.setOption(option)
}
},
refresh() {
this.setOptions(this.chartOption)
},
clearChart() {
this.chart && this.chart.clear()
}
}
}
</script>
以上是编程学习网小编为您介绍的“vue项目中如何封装echarts图表”的全面内容,想了解更多关于 vuejs 内容,请继续关注编程基础学习网。
沃梦达教程
本文标题为:vue项目中如何封装echarts图表


基础教程推荐
猜你喜欢
- js获得参数的getParameter使用示例 2023-12-02
- 详解json串反转义(消除反斜杠) 2024-02-07
- nginx静态html页面接收post请求,报405 not allowed错误 2023-10-25
- Ajax表单异步上传文件实例代码(包括文件域) 2023-01-21
- JavaScript编写猜拳游戏 2024-02-07
- jquery1.8版本使用ajax实现微信调用出现的问题分析及解决办法 2022-10-17
- Fly拦截全局Ajax请求的方法 2023-02-23
- html和css有哪些禁止元素拖拽的代码 2024-12-15
- 举例详解CSS中的text-shadow文字阴影效果使用 2024-01-21
- 用js读、写、删除Cookie代码分享及详细注释说明 2024-03-20