echarts折线图使用示例vue
时间: 2023-10-14 19:29:11 浏览: 102
在vue中使用Echarts画曲线图的示例
5星 · 资源好评率100%
好的,我可以为您提供一个使用 Vue.js 和 Echarts 折线图的示例:
```html
<template>
<div class="line-chart"></div>
</template>
<script>
import echarts from 'echarts'
export default {
mounted() {
this.drawLineChart()
},
methods: {
drawLineChart() {
const chart = echarts.init(this.$el)
const options = {
title: {
text: '折线图示例'
},
tooltip: {},
xAxis: {
data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日']
},
yAxis: {},
series: [{
name: '销量',
type: 'line',
data: [5, 20, 36, 10, 10, 20, 15]
}]
}
chart.setOption(options)
}
}
}
</script>
<style scoped>
.line-chart {
width: 100%;
height: 400px;
}
</style>
```
在这个示例中,我使用了 Vue.js 和 Echarts 来创建一个简单的折线图。在 `mounted` 生命周期中,我调用了 `drawLineChart` 方法,该方法使用 Echarts 的 API 来绘制折线图。在 `options` 对象中,我定义了图表的标题、x 轴和 y 轴标签以及数据系列。最后,我将图表渲染到 DOM 上。希望这个示例能够帮助到您!
阅读全文