echarts折线图 vue代码
时间: 2023-10-13 11:09:15 浏览: 84
HTML+VUE+Echarts折线图让某一个点闪烁
5星 · 资源好评率100%
以下是一个基本的使用 Vue.js 和 ECharts 绘制折线图的示例代码:
```html
<template>
<div id="chart" style="width: 100%; height: 500px;"></div>
</template>
<script>
import echarts from 'echarts'
export default {
mounted() {
this.renderChart()
},
methods: {
renderChart() {
let myChart = echarts.init(document.getElementById('chart'))
myChart.setOption({
tooltip: {
trigger: 'axis'
},
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [{
data: [820, 932, 901, 934, 1290, 1330, 1320],
type: 'line'
}]
})
}
}
}
</script>
<style>
#chart {
height: 500px;
}
</style>
```
这会生成一个基本的折线图,其中 x 轴是星期几,y 轴是一些数据。你可以根据自己的需求更改数据和样式。
阅读全文