请检查图像。我只想突出显示相关栏。
我写了一个脚本来绘制此图表。 链接在这里; “ https://codepen.io/Shildra/pen/MZGvQe”
var ctx = document.getElementById('chart');
var myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: ["Red", "Blue", "Yellow"],
datasets: [{
label: '# of Votes 1',
data: [10, 19, 3],
backgroundColor: [
'rgba(255, 99, 132, 0.8)',
'rgba(255, 99, 132, 0.8)',
'rgba(255, 99, 132, 0.8)',`
我使用了Chart.js库。
我尝试了将近10次来链接这2个小节。
每次我失败。
请帮助我,我找不到解决方法。