javascript - eCharts - multiple y-axis overlapping each other
问题 I use eCharts javascript plugin to create a line chart .... As you can see in the picture I attached below, the y-axis is overlapping each other. And this is the option I use var colors = ['#5793f3', '#d14a61', '#675bba']; var option = { title: { text: 'Wi-Fi Users & Bandwidth Usage by Day & Month Summary' }, tooltip: { trigger: 'axis', formatter: function (params) { params = params[0]; var date = new Date(params.name); return date.getDate() + '/' + (date.getMonth() + 1) + '/' + date