Dev/js

ECharts xlabel 안보일 때

Aloner 2022. 5. 3. 09:17
728x90
반응형

x축의 Label의 길이가 너무 길면 중간중간 라벨이 생략된 채로 차트가 나오게 됩니다.

...,
xAxis: [
	{
    	...,
        axisLabel: {
        	rotate: 30,
            interval: 0
        }
    }
],
...

axisLabel에 rotate 로 회전을 주고 interval 을 0으로 하면 모든 라벨이 보입니다.

참고 : https://stackoverflow.com/questions/44076557/echarts-how-to-show-all-axis-labels

 

ECharts: how to show all axis labels?

Echarts seems to have a nice feature that automatically chooses which labels to display depending on the space provided. However, this algorithm seems to be bit too aggressive at times and does not...

stackoverflow.com

 

728x90
반응형