Sencha chart 데이터 타입이 time인 x축 포멧 지정하기

2024. 11. 23. 23:23Javascript/Sencha

                axes: [
                    {
                        type: 'numeric',
                        position: 'left',
                        title: 'Values',
                        grid: true,
                    },
                    {
                        type: 'time',
                        position: 'bottom',
                        title: 'Date',
                        fields: 'DNT_CRTN',
                        dateFormat: 'm월 d일', // Custom Korean format
                        grid: true,
                    },
                ],