天天看點

echarts折線圖百分比作為y軸的刻度echarts百分比作為y軸的刻度

echarts折線圖百分比作為y軸的刻度

  • echarts百分比作為y軸的刻度
          • 代碼配置
          • 折線圖效果
          • echarts線上編輯運作連結

echarts百分比作為y軸的刻度

代碼配置
option = {
   title: {
       text: '堆疊區域圖'
   },
   tooltip : {
       trigger: 'axis',
       formatter: function (params) {
          var html=params[0].name+"<br>";
           for(var i=0;i<params.length;i++){
             html+='<span style="display:inline-block;margin-right:5px;border-radius:10px;width:10px;height:10px;background-color:'+params[i].color+';"></span>'
               if(option.series[params[i].seriesIndex].valueType=="perce
           

繼續閱讀