1. Grid 그리기 // 그리드 정보 const gridCount = 9; const gridArea = {x:50, y:30, h:350, w:400}; // canvas const canvas = document.getElementById('chart'); const ctx = canvas.getContext('2d'); // 그리드 그리기 ctx.fillStyle = "#CCC" const gap = 50; for(let i = 0 ; i