其他分享
首页 > 其他分享> > ECharts 柱形图 Y轴不等距轴

ECharts 柱形图 Y轴不等距轴

作者:互联网

Y轴因为数据大小差距太大导致图表观感极差

思路 :将页面显示的数据 data开根号或者立方根
Data.map(i=>Math.cbrt(i))
此外需要考虑的点:
1 tooltip 显示数据需要自定义
2 Y轴的数据需要逆向显示

 option = {
  xAxis: {
    type: 'category',
    data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun','Mon', 'Tue', 'Wed', 'Thu', 'Fri']
  },
  yAxis: {
    type: 'value',
   axisLabel: {
      margin: 5,
      textStyle: {
        fontSize: 12,
      },
      formatter:function(value){ 
        return value*value*value
        // return value
      }
    }, 
  },
   tooltip: { //悬浮窗与axisPointer
    trigger: 'axis',
    transitionDuration: 1, //提示框浮层的移动动画过渡时间
    confine: true, //是否将 tooltip 框限制在图表的区域内
    formatter: function(params){
      //name:类目轴数据,value:数值轴数据, dataIndex:数据的索引
      return params[0].name + '<br>' +[150, 230, 224, 218, 135, 147, 8600][params[0].dataIndex]  
      // return params[0].name + '<br>' + params[0].value
    },
    axisPointer: {
      type: 'line',
      axis: 'x',
      snap: true, //axisPointer自动吸附到最近的点上
    }
  },
  series: [
    {
      data: [0, 0, 0, 11, 162, 14, 120, 27, 58, 52, 96, 162,].map(i=>Math.cbrt(i)),
      type: 'line',
    
    },
     {
      data: [1, 0, 0, 121, 8000, 14, 120, 271, 58, 521, 96, 162,].map(i=>Math.cbrt(i)),
      type: 'line',
    
    }
  ]
};

标签:等距,data,value,params,柱形图,return,type,ECharts,Math
来源: https://blog.csdn.net/weixin_47338877/article/details/122670727