私は棒グラフを作成するのにchart.jsを使用していますが、ラベルの色や凡例の色を変更できないようです。私は目盛りの色を変更する方法を考え出しましたが、実際に私が使用する必要がある場合は、 'scaleFontColor'をどこに置くべきかわかりません。Chart.jsラベルの色
ここは、今のように見えるものへのリンクです。 http://imgur.com/nxaH1mk
そしてここでは私のコードです:
var ctx = document.getElementById("myChart");
var myChart = new Chart(ctx, {
scaleFontColor: "white",
type: "bar",
data: {
labels: <?php echo json_encode($timeSlice); ?>,
datasets: [{
label: "A Label",
backgroundColor: "rgba(159,170,174,0.8)",
borderWidth: 1,
hoverBackgroundColor: "rgba(232,105,90,0.8)",
hoverBorderColor: "orange",
scaleStepWidth: 1,
data: <?php echo json_encode($myCount); ?>
}]
},
options: {
legend: {
fontColor: "white"
},
scales: {
yAxes: [{
ticks: {
fontColor: "white",
stepSize: 1,
beginAtZero: true
}
}]
}
}
});
任意の助けいただければ幸いです。
https://stackoverflow.com/a/48580585/7186739 – Super