Sencha chart x축 글자 수직으로 표시하기
2024. 11. 24. 20:10ㆍJavascript/Sencha
label의 rotate를 통해서 각도를 원하는 대로 조정할 수 있음
axes: [
{
type: 'numeric',
position: 'left',
title: 'Value',
grid: true,
},
{
type: 'category',
position: 'bottom',
title: 'Months',
fields: 'category',
grid: true,
label: {
rotate: {
degrees: 90, // Rotate text 90 degrees for vertical alignment
},
fontSize: '12px', // Adjust font size if needed
},
},
'Javascript > Sencha' 카테고리의 다른 글
Sencha chart에서 확대 축소 처리 (0) | 2024.11.24 |
---|---|
Sencha layout item들이 수평으로 꽉차게 보이도록 처리 (0) | 2024.11.24 |
Sencha chart series 동적 처리 (0) | 2024.11.23 |
Sencha chart 데이터 타입이 time인 x축 포멧 지정하기 (0) | 2024.11.23 |
Sencha chart Oracle Date type을 그대로 받아 쓰려면.. (0) | 2024.11.23 |