[chart.js] 사용 팁
1. line chart에서 legend 색 마킹 테두리말고 전체 색 마킹 설정 AS-IS TO-BE 설정 방법 this.myChart = new Chart(ctx, { type: 'line', data: { // ... label: 라벨 이름, // 👇 backgroundColor 설정 backgroundColor: tagColor, // 👇 borderColor 설정 borderColor: tagColor, data: 차트 데이터 }, backgroundColor: /*...*/, options: { /*...*/ } } 2. barchart에서 bar width 크기 조절 data.datasets[0].barThickness 각 bar의 두께(width) 조절 ...minBarThickness: 최..
2021. 9. 9.