用js写一个动态的echarts折线图,注意数据是静态的,注意是动态的折线图,我需要完整代码
时间: 2024-04-29 16:26:21 浏览: 96
好的,以下是我为您编写的JS代码,可用于创建动态的echarts折线图,数据为静态的:
HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>动态折线图</title>
<script src="https://cdn.jsdelivr.net/npm/echarts@5.2.2/dist/echarts.min.js"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<div id="chart" style="width: 600px;height:400px;"></div>
</body>
<script src="line.js"></script>
</html>
```
JS代码:
```js
//初始化echarts实例
var myChart = echarts.init(document.getElementById('chart'));
//配置项和数据
var option = {
title: {
text: '动态折线图'
},
tooltip: {
trigger: 'axis'
},
legend: {
data: ['数据列表']
},
xAxis: {
type: 'category',
boundaryGap: false,
data: ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月']
},
yAxis: {
type: 'value',
axisLabel: {
formatter: '{value} 次'
}
},
series: [{
name: '数据列表',
type: 'line',
data: [10, 30, 15, 20, 12, 23, 30, 45, 32, 27, 18, 25],
markPoint: {
data: [{
type: 'max',
name: '最大值'
}, {
type: 'min',
name: '最小值'
}]
},
markLine: {
data: [{
type: 'average',
name: '平均值'
}]
}
}]
};
//使用刚指定的配置项和数据显示图表
myChart.setOption(option);
//动态更新折线图
setInterval(function () {
//更新数据
var data = [Math.round(Math.random() * 50), Math.round(Math.random() * 50),
Math.round(Math.random() * 50), Math.round(Math.random() * 50),
Math.round(Math.random() * 50), Math.round(Math.random() * 50),
Math.round(Math.random() * 50), Math.round(Math.random() * 50),
Math.round(Math.random() * 50), Math.round(Math.random() * 50),
Math.round(Math.random() * 50), Math.round(Math.random() * 50)];
//设置Option
myChart.setOption({
series: [{
name: '数据列表',
data: data,
markPoint: {
data: [{
type: 'max',
name: '最大值'
}, {
type: 'min',
name: '最小值'
}]
},
markLine: {
data: [{
type: 'average',
name: '平均值'
}]
}
}]
});
}, 2000);
```
希望您能满意!
阅读全文