一、坐标轴组成部分 轴标题-Axis Title 坐标轴标题。
就可以了。
只能修改x和y轴上文字的颜色,轴的颜色不可以改变。var ctx = $("#weekly-clicks-chart")
var weeklyClicksChart = new Chart(ctx, {
type: 'line',
data: data,
scaleFontColor: 'red',
options: {
scaleFontColor: 'red',
responsive: true,
tooltips: {
mode: 'single',
},
scales: {
xAxes: [{
gridLines: {
display: false,
},
ticks: {
fontColor: "#CCC", // this here
},
}],
yAxes: [{
display: false,
gridLines: {
display: false,
},
}],
}
}
})