echarts折线图怎么用
时间: 2023-09-19 11:09:25 浏览: 75
echarts 双折线图 实现 与虚线
使用 echarts 制作折线图可以分为以下步骤:
1. 引入 echarts 库和主题库
```html
<!-- 引入 echarts 库 -->
<script src="https://cdn.jsdelivr.net/npm/echarts/dist/echarts.min.js"></script>
<!-- 引入 echarts 主题库 -->
<script src="https://cdn.jsdelivr.net/npm/echarts/dist/theme/macarons.js"></script>
```
2. 准备一个 DOM 容器
```html
<div id="myChart" style="width: 600px; height: 400px;"></div>
```
3. 初始化 echarts 实例
```js
// 初始化 echarts 实例
var myChart = echarts.init(document.getElementById('myChart'), 'macarons');
```
4. 配置 echarts 图表参数
```js
// 配置 echarts 图表参数
var option = {
title: {
text: '折线图示例'
},
tooltip: {
trigger: 'axis'
},
legend: {
data: ['销量']
},
xAxis: {
type: 'category',
data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日']
},
yAxis: {
type: 'value'
},
series: [{
name: '销量',
type: 'line',
data: [120, 200, 150, 80, 70, 110, 130]
}]
};
```
5. 使用 setOption 方法设置图表参数
```js
// 使用 setOption 方法设置图表参数
myChart.setOption(option);
```
完整代码如下:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>echarts 折线图示例</title>
<script src="https://cdn.jsdelivr.net/npm/echarts/dist/echarts.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/echarts/dist/theme/macarons.js"></script>
</head>
<body>
<div id="myChart" style="width: 600px; height: 400px;"></div>
<script>
var myChart = echarts.init(document.getElementById('myChart'), 'macarons');
var option = {
title: {
text: '折线图示例'
},
tooltip: {
trigger: 'axis'
},
legend: {
data: ['销量']
},
xAxis: {
type: 'category',
data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日']
},
yAxis: {
type: 'value'
},
series: [{
name: '销量',
type: 'line',
data: [120, 200, 150, 80, 70, 110, 130]
}]
};
myChart.setOption(option);
</script>
</body>
</html>
```
这样就可以制作一个简单的折线图了。当然,还可以通过调整参数来实现更多定制化的效果。
阅读全文