Echarts column chart removes the XY axis problem

1. Remove the y-axis dividing line

// An highlighted block
yAxis : [
	      {
    
    
	            type : 'value',
	            splitLine:{
    
    
				           show:false
				          }
	      }
    ],

   X轴也是一样

2. Remove the Y axis:

// An highlighted block
yAxis : [
        {
    
    
            type : 'value',
            show:false 
        }
    ],

3. Remove the Y-axis tick: increase: axisTick:{ show:false}

// An highlighted block
yAxis : [
        {
    
    
            type : 'value',
            axisTick:{
    
    
			           show:false
		     }
        }
    ],

Guess you like

Origin blog.csdn.net/weixin_45108907/article/details/111642974