vue项目中实现一个 echarts圆柱体图表示例
时间: 2023-11-30 22:05:08 浏览: 84
好的,下面是一个简单的 Vue+Echarts 圆柱体图的实现示例:
1. 安装 ECharts
在项目中安装 ECharts:
```
npm install echarts --save
```
2. 引入 ECharts
在需要使用 ECharts 的组件中,引入 ECharts:
```javascript
import echarts from 'echarts'
```
3. 创建 ECharts 图表
在组件的 mounted 钩子函数中,创建 ECharts 图表对象:
```javascript
mounted() {
// 基于准备好的dom,初始化echarts实例
let myChart = echarts.init(document.getElementById('myChart'))
// 绘制图表
myChart.setOption({
title: { text: 'ECharts 圆柱体图示例' },
tooltip: {},
xAxis: {
data: ['A', 'B', 'C', 'D', 'E', 'F']
},
yAxis: {},
series: [{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
})
}
```
4. 在模板中渲染图表
在模板中,使用一个 div 元素占位,用于渲染 ECharts 图表:
```html
<template>
<div id="myChart" style="width: 600px;height:400px;"></div>
</template>
```
完整代码如下:
```html
<template>
<div id="myChart" style="width: 600px;height:400px;"></div>
</template>
<script>
import echarts from 'echarts'
export default {
name: 'EchartsDemo',
mounted() {
// 基于准备好的dom,初始化echarts实例
let myChart = echarts.init(document.getElementById('myChart'))
// 绘制图表
myChart.setOption({
title: { text: 'ECharts 圆柱体图示例' },
tooltip: {},
xAxis: {
data: ['A', 'B', 'C', 'D', 'E', 'F']
},
yAxis: {},
series: [{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
})
}
}
</script>
```
阅读全文