Sencha chart x축 글자 수직으로 표시하기

2024. 11. 24. 20:10Javascript/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
                        },
                    },