How to change bar-color on a chart.js bar graph

I have a bar chart using chart.js. I want to be able to change the color of the bar-chart (the value part). I’ve tried looking on the chart.js docs but I couldn’t find anything. <main> <div class="content"> <h1>Results</h1> <h2>Trial 1</h2> <div class="results" class="results" id="trial-1"> <canvas class="show-results"></canvas></div> <h2>Trial 2</h2> <div class="results" id="trial-1"> <canvas class="show-results"></canvas></div> <h2>Trial 3</h2>… Read More How to change bar-color on a chart.js bar graph

How to make the whole <canvas> element in Chart.js V3.7.0 display cursor as pointer on hover?

how can I make my canvas element display cursor style as pointer when I hover over it. HTML: <canvas id="myChart"></canvas> I tried both: events: [‘mousemove’, ‘click’], onHover: (event, chartElement) => { event.target.style.cursor = chartElement[0] ? ‘pointer’ : ‘default’; } And: options: { plugins : { legend: { labels: { onHover: function (e) { e.native.target.style.cursor =… Read More How to make the whole <canvas> element in Chart.js V3.7.0 display cursor as pointer on hover?