El gráfico de columnas de Echarts elimina el problema del eje XY

1. Quite la línea divisoria del eje y

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

   X轴也是一样

2. Quite el eje Y:

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

3. Quite la marca del eje Y: aumento: ejeTick: {show: false}

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

Supongo que te gusta

Origin blog.csdn.net/weixin_45108907/article/details/111642974
Recomendado
Clasificación