echarts实现双y轴折线图 - 配置项
程序员文章站
2022-07-14 22:57:48
...
echarts实现双y轴折线图 - 配置项
let option = {
xAxis: {
type: 'time',
axisLabel: {
show: true,
}
},
yAxis: [{
type: 'value',
position: 'left'
}, {
type: 'value',
position: 'right'
}],
series: [{
data: [['2016/12/18 6:38:08', 20], ['2016/12/18 8:38:08', 30]],
type: 'line',
yAxisIndex: 0, // 通过这个判断左右
smooth: true
}, {
data: [['2016/12/18 7:38:08', 20], ['2016/12/18 9:38:08', 90]],
type: 'line',
yAxisIndex: 1,
smooth: true
}]
};
实现效果:
下一篇: Mycat 多租户方案 (1)