0
私のグラフの凡例のボックスをグラフの線のスタイルで更新したい。グラフJsグラフのグラフの凡例のボックスをグラフの線のスタイルで更新する
以下は私のコードがあるが、凡例ラベル画像が更新されていません。誰でも助けてくれますか?
var ctx = document.getElementById("myChart");
this.myChart = new Chart(ctx, {
type: 'line',
data: {
labels: ["Jan", "Blue", "Yellow", "Green", "Purple", "Orange"],
datasets: [{
label: 'Actual Consumption',
data:[24, 49, 6, 7, 21, 6],
backgroundColor: [
'rgba(225,225,225,0)'
],
borderColor: [
'rgba(53,91,183,1)'
],
borderWidth: 2.2,
pointStyle: 'circle',
},{
label: 'Average Use ',
data:[4, 12, 2, 17, 22, 2],
backgroundColor: [
'rgba(225,225,225,0)'
],
borderColor: [
'rgba(230,104,38,1)'
],
borderWidth: 2.2,
pointStyle: 'rect',
},{
label: 'Total Use',
data:this.data,
backgroundColor: [
'rgba(225,225,225,0)'
],
borderColor: [
'rgba(148,148,148,1)'
] ,
borderWidth: 2.2,
pointStyle: 'triangle',
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero:true
}
}]
},
**legend: {
cursor : "pointer",
useLineStyle: true,
labels: {
fontColor: '#000000'
}
}**
}
});
ありがとうございます!実際の要件に非常に近い。私はまた、伝説のイメージの真ん中に線が必要です。 –