// 兩個縱坐標 yAxis: [ { type: "value", axisTick: { show: false }, axisLine: { lineStyle: { color: "rgba(228,231,237,1)", } }, axisLabel: { color:"rgba(95,112,132,1)", fontSize:'12' }, }, { type: "value", // 坐標軸刻度線 axisTick: { show: false }, // 坐標軸線 axisLine: { lineStyle: { color: "rgba(228,231,237,1)", } }, // 坐標軸上的字 axisLabel: { color:"rgba(95,112,132,1)", fontSize:'12', formatter: function(value){ return (value*100).toFixed(2)+'%' } }, } ],
效果: