Chartjs-Chart.js change Color of a Point during runtime 29 September 2023 by thecoderscamp.com 0👍 ✅ use array for colors Chart1.config.data.datasets[3]['pointBackgroundColor'] = Array.from(Array(16)).map((e, i) => i === 2 ? 'rgba(255, 0, 0,0.5)' : 'rgba(0, 0, 0, 1)' ); Chartjs-Chart.js – Same min and max value of two charts Source:stackexchange.com