짝수 홀수에 따라서 차트바 색상이 변경되는 것과 라벨에 따라 차트바 색상이 변경되야 하는 두가지를 버전을 써야 되는 상황이 와서 정리해본다 1. 우선 짝수 홀수 datasets 안에 backgroundColor: function(context) { var index = context.dataIndex; return index % 2 === 0 ? '#ea8474' : '#f6cf7a'; 해당 내용으로 하면 되고 또한 라벨에 따라서 하는 방법은 2. 라벨 내용에 따라 변경 backgroundColor: function(context) { var label = context.chart.data.labels[context.dataIndex]; if(label == '대한'){ return '#F9AE1D'; ..