chart.js 누적 막대 그래프 만들기 (+ 데이터 변수 적용)
위에 막대그래프를 누적막대그래프로 만들기 전에 const ctx = $('#test-chart'); const myChart = new Chart(ctx, { type:'bar', data:{ labels:['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'], datasets:[ { label:'2021', data:[10,8,6,5,12,7], backgroundColor:'rgba(203,206,145,.5)', borderColor:'#CBCE91', borderWidth:1 }, { label:'2020', data:[5,10,5,3,4,2], backgroundColor:'rgba(203,206,145,.5)', borderColor:'#CBCE91'..
2022. 2. 2.