用e-charts画一个折线图,横坐标为实际的年月日时间,纵坐标为具体的数值,左右两侧各有一个y轴,两个y轴共用一套划分方法,需要完整的html代码
时间: 2023-12-01 14:02:42 浏览: 67
以下是一个简单的用e-charts画折线图的示例代码,包括了html、javascript和css部分:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ECharts 折线图</title>
<!-- 引入 echarts.js -->
<script src="https://cdn.jsdelivr.net/npm/echarts@5.0.2/dist/echarts.min.js"></script>
<style>
/* 设置容器高度 */
#chart-container {
height: 500px;
}
</style>
</head>
<body>
<!-- 定义一个容器用于显示图表 -->
<div id="chart-container"></div>
<<script>
// 初始化 echarts 实例
var myChart = echarts.init(document.getElementById('chart-container'));
// 配置项
var option = {
title: {
text: '折线图'
},
tooltip: {
trigger: 'axis'
},
legend: {
data: ['示例数据1', '示例数据2']
},
// 设置两个 y 轴
yAxis: [
{
type: 'value',
name: '左侧 Y 轴'
},
{
type: 'value',
name: '右侧 Y 轴'
}
],
xAxis: {
type: 'time',
// 自定义时间格式
axisLabel: {
formatter: function (value, index) {
return echarts.format.formatTime('yyyy-MM-dd', value);
}
}
},
series: [
{
name: '示例数据1',
type: 'line',
data: [
['2021-01-01', 10],
['2021-01-02', 20],
['2021-01-03', 30],
['2021-01-04', 40],
['2021-01-05', 50],
['2021-01-06', 60],
['2021-01-07', 70],
],
// 指定该系列使用哪个 y 轴
yAxisIndex: 0
},
{
name: '示例数据2',
type: 'line',
data: [
['2021-01-01', 100],
['2021-01-02', 200],
['2021-01-03', 300],
['2021-01-04', 400],
['2021-01-05', 500],
['2021-01-06', 600],
['2021-01-07', 700],
],
// 指定该系列使用哪个 y 轴
yAxisIndex: 1
}
]
};
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);
</script>
</body>
</html>
```
你只需要将数据部分进行修改,就可以得到自己需要的折线图了。
阅读全文